pyth-crosschain/target_chains/ethereum/examples/oracle_swap
Sahilgat 7cbdcb562d fix: underflow issue 2023-09-04 18:44:41 +02:00
..
app Expose pythnet message buffer idls (#865) 2023-06-09 14:10:28 +02:00
contract fix: underflow issue 2023-09-04 18:44:41 +02:00
README.md fix broken links (#945) 2023-07-11 11:41:43 +01:00

README.md

Pyth Oracle AMM

This directory contains an example oracle AMM application using Pyth price feeds. The oracle AMM manages a pool of two tokens and allows a user to trade with the pool at the current Pyth price.

This application has two components. The first component is a smart contract (in the contract directory) that manages the pool and implements the trading functionality. The second is a frontend application (in the app directory) that communicates with the smart contract.

Please see the Pyth documentation for more information about Pyth and how to integrate it into your application.

Warning this AMM is intended only as a demonstration of Pyth price feeds and is not for production use.

AMM Contract

All of the commands in this section expect to be run from the contract directory.

Building

You need to have Foundry and node installed to run this example. Once you have installed these tools, run the following commands from the contract directory:

forge install foundry-rs/forge-std@2c7cbfc6fbede6d7c9e6b17afe997e3fdfe22fef --no-git --no-commit
forge install pyth-network/pyth-sdk-solidity@v2.2.0 --no-git --no-commit
forge install OpenZeppelin/openzeppelin-contracts@v4.8.1 --no-git --no-commit

Testing

Simply run forge test in the contract directory. This command will run the tests located in the contract/test directory.

Deploying

To deploy the contract, you first need to configure the target network and the tokens in the AMM pool. Edit the configuration parameters in the deploy script and then run it using ./scripts/deploy.sh. The code comments in that file should help you populate the parameters correctly.

If you don't have ERC-20 tokens to test with, you can use the token deploy script to create some for testing. Edit the configuration parameters in there before running to set the network and token name. This will deploy a new mock token and print out a contract address. Once you have this address, you can mint the token anytime using the following command:

cast send --rpc-url <RPC_URL> -l <ERC20_CONTRACT_ADDRESS> "mint(address,uint256)" <YOUR_WALLET_ADDRESS> <QUANTITY_IN_WEI>

When the contract is deployed, the token pools are initially empty. You will need to send some funds to the pool for testing purposes. You can use the following command to transfer ERC-20 tokens from your wallet to the contract:

cast send --rpc-url <RPC_URL> -l <ERC20_CONTRACT_ADDRESS> "transfer(address,uint256)" <DESTINATION_ADDRESS> <QUANTITY_IN_WEI>

Create ABI

If you change the contract, you will need to create a new ABI. The frontend uses this ABI to create transactions. You can overwrite the existing ABI by running the following command:

forge inspect OracleSwap abi > ../app/src/abi/OracleSwapAbi.json

Frontend Application

By default, the frontend is configured to use the already deployed version of the oracle AMM at address 0x15F9ccA28688F5E6Cbc8B00A8f33e8cE73eD7B02 on Polygon Mumbai. This means you can start playing with the application without going through the steps above (Remember to switch your wallet to Mumbai and to claim funds from a faucet to pay for the gas).

Build

From the root of the pyth-crosschain repository, run:

npm ci
npx lerna run build

This command will install dependencies for all packages within the typescript monorepo, and also build some typescript SDKs that this example depends on.

Run

After building, you can start the frontend by navigating to the app/ directory and running:

npm run start

Then navigate your browser to localhost:3000.

Other configurations:

optimism goerli addresses brl 0x8e2a09b54fF35Cc4fe3e7dba68bF4173cC559C69 usd 0x98cDc14fe999435F3d4C2E65eC8863e0d70493Df swap contract 0xf3161b2B32761B46C084a7e1d8993C19703C09e7