Skip to content

Commit 720b0a7

Browse files
committed
chore(pricefeeds) Add morpho Example
1 parent f7b56ad commit 720b0a7

File tree

8 files changed

+167
-0
lines changed

8 files changed

+167
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
PRIVATE_KEY=
2+
RPC_URL=
3+
# https://www.pyth.network/developers/price-feed-ids
4+
PYTH_ADDRESS=
5+
# https://docs.pyth.network/price-feeds/price-feed-ids
6+
PRICE_FEED_ID=
7+
ETHERSCAN_API_KEY=
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Compiler files
2+
cache/
3+
out/
4+
5+
# Ignores development broadcast logs
6+
broadcast/
7+
8+
# Docs
9+
docs/
10+
11+
# Dotenv file
12+
.env
13+
14+
lib/*
15+
!lib/README.md
16+
17+
*~
18+
19+
node_modules
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
## Foundry
2+
3+
**Foundry is a blazing fast, portable and modular toolkit for Ethereum application development written in Rust.**
4+
5+
Foundry consists of:
6+
7+
- **Forge**: Ethereum testing framework (like Truffle, Hardhat and DappTools).
8+
- **Cast**: Swiss army knife for interacting with EVM smart contracts, sending transactions and getting chain data.
9+
- **Anvil**: Local Ethereum node, akin to Ganache, Hardhat Network.
10+
- **Chisel**: Fast, utilitarian, and verbose solidity REPL.
11+
12+
## Documentation
13+
14+
https://book.getfoundry.sh/
15+
16+
## Usage
17+
18+
### Build
19+
20+
```shell
21+
$ forge build
22+
```
23+
24+
### Test
25+
26+
```shell
27+
$ forge test
28+
```
29+
30+
### Format
31+
32+
```shell
33+
$ forge fmt
34+
```
35+
36+
### Gas Snapshots
37+
38+
```shell
39+
$ forge snapshot
40+
```
41+
42+
### Anvil
43+
44+
```shell
45+
$ anvil
46+
```
47+
48+
### Deploy
49+
50+
```shell
51+
$ forge script script/Counter.s.sol:CounterScript --rpc-url <your_rpc_url> --private-key <your_private_key>
52+
```
53+
54+
### Cast
55+
56+
```shell
57+
$ cast <subcommand>
58+
```
59+
60+
### Help
61+
62+
```shell
63+
$ forge --help
64+
$ anvil --help
65+
$ cast --help
66+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[profile.default]
2+
src = "src"
3+
out = "out"
4+
libs = ["lib"]
5+
6+
# See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options

price_feeds/evm/morpho-pyth-oracle/package-lock.json

+22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "morpho-pyth-oracle",
3+
"version": "1.0.0",
4+
"description": "**Foundry is a blazing fast, portable and modular toolkit for Ethereum application development written in Rust.**",
5+
"main": "index.js",
6+
"directories": {
7+
"lib": "lib",
8+
"test": "test"
9+
},
10+
"scripts": {
11+
"test": "echo \"Error: no test specified\" && exit 1"
12+
},
13+
"keywords": [],
14+
"author": "",
15+
"license": "ISC",
16+
"dependencies": {
17+
"@pythnetwork/pyth-sdk-solidity": "^4.0.0"
18+
}
19+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@pythnetwork/pyth-sdk-solidity=node_modules/@pythnetwork/pyth-sdk-solidity
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// SPDX-License-Identifier: Apache 2
2+
pragma solidity ^0.8.0;
3+
4+
import "forge-std/Script.sol";
5+
import {PythAggregatorV3} from "@pythnetwork/pyth-sdk-solidity/PythAggregatorV3.sol";
6+
import "forge-std/console.sol";
7+
contract PythAggregatorV3Deployment is Script {
8+
function run() external {
9+
uint256 deployerPrivateKey = vm.envUint("PRIVATE_KEY");
10+
vm.startBroadcast(deployerPrivateKey);
11+
12+
// Get the address for your ecosystem from:
13+
// https://docs.pyth.network/price-feeds/contract-addresses/evm
14+
address pythPriceFeedsContract = vm.envAddress("PYTH_ADDRESS");
15+
// Get the price feed ids from:
16+
// https://docs.pyth.network/price-feeds/price-feed-ids
17+
bytes32 priceFeedId = vm.envBytes32("PRICE_FEED_ID");
18+
19+
// Deploy an instance of PythAggregatorV3 for every feed.
20+
// You can deploy these contracts beforehand if you are integrating with
21+
PythAggregatorV3 aggregator = new PythAggregatorV3(pythPriceFeedsContract, priceFeedId);
22+
23+
console.log("PythAggregatorV3 deployed at", address(aggregator));
24+
25+
vm.stopBroadcast();
26+
}
27+
}

0 commit comments

Comments
 (0)