pyth-crosschain/contract_manager
Ali Behjati 9c6bdfdcf9
feat(contract_manager): script for EVM feeds contract deployment (#1254)
* feat(contract_manager): script for EVM feeds contract deployment

This change adds a script to replace truffle deployment scripts. This
gives us more control and flexibility over the deployment process.

* chore: address comments

---------

Co-authored-by: Dev Kalra <kalradev@outlook.com>
2024-01-30 12:11:19 +01:00
..
scripts feat(contract_manager): script for EVM feeds contract deployment (#1254) 2024-01-30 12:11:19 +01:00
src feat(contract_manager): script for EVM feeds contract deployment (#1254) 2024-01-30 12:11:19 +01:00
store feat(contract_manager): script for EVM feeds contract deployment (#1254) 2024-01-30 12:11:19 +01:00
.eslintrc.js [contract-manager] General improvements (#1024) 2023-08-23 16:29:43 +02:00
.gitignore [contract-manager] More utility scripts and docs (#1222) 2024-01-11 13:45:40 +01:00
README.md [contract-manager] More utility scripts and docs (#1222) 2024-01-11 13:45:40 +01:00
package.json Entropy support in contract manager (#1242) 2024-01-24 14:36:10 +01:00
tsconfig.json Initial version of contract manager sdk (#943) 2023-07-12 15:50:24 +02:00

README.md

Contract Manager

The contract manager is a tool to interact with Pyth related contracts on all supported chains.

It has the following structure:

  • store contains all the necessary information for registered chains and deployed contracts
  • scripts contains utility scripts to interact with the contract manager and accomplish common tasks
  • src contains the contract manager code

Main Entities

Contract Manager has base classes which you can use to interact with the following entities:

  • Chain
  • PythContract
  • WormholeContract

Each of these entities has a specialized class for each supported chain (EVM/Cosmos/Aptos/Sui).

Docs

You can generate the docs by running npx typedoc src/index.ts from this directory. Open the docs by opening docs/index.html in your browser.

Scripts

You can run the scripts by executing npx ts-node scripts/<script_name>.ts from this directory.