Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
11 changes: 5 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
# Ignores compiler files
cache/
out/
/cache/
/out/

# Ignores development broadcast logs
!/broadcast
!/broadcast/
/broadcast/*/31337/
/broadcast/**/dry-run/


# Soldeer
/dependencies
# Ignores Soldeer dependencies
/dependencies/
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ Very simple contract that can consume the FTSO prices is shown in `examples/netw
An example usage of the FTSO system to dynamically price token in a contract is showcased in
`examples/network/DynamicToken.sol` with a more detailed explanation in the [blogpost](https://medium.com/@j0-0sko/taking-it-up-to-11-74dd91c39c2b).


### I want to confirm something using the attestation client

Coming soon.
Expand Down
14 changes: 7 additions & 7 deletions foundry.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "flare-periphery"
version = "0.0.24"
version = "0.1.37"

[profile.default]
src = "src"
Expand All @@ -11,18 +11,18 @@ libs = ["lib", "dependencies"]
"@openzeppelin-contracts" = "5.2.0-rc.1"

[soldeer]
# whether soldeer manages remappings
# Whether Soldeer manages remappings
remappings_generate = true

# whether soldeer re-generates all remappings when installing, updating or uninstalling deps
# Whether Soldeer re-generates all remappings when installing, updating or uninstalling deps
remappings_regenerate = false

# whether to suffix the remapping with the version: `name-a.b.c`
# Whether to suffix the remapping with the version: `name-a.b.c`
remappings_version = false

# where to store the remappings ("txt" for `remappings.txt` or "config" for `foundry.toml`)
# ignored when `soldeer.toml` is used as config (uses `remappings.txt`)
# Where to store the remappings ("txt" for `remappings.txt` or "config" for `foundry.toml`)
# Ignored when `soldeer.toml` is used as config (uses `remappings.txt`)
remappings_location = "txt"

# Install all subdependencies
# Whether to install all sub-dependencies
recursive_deps = true
2 changes: 1 addition & 1 deletion remappings.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@openzeppelin-contracts/=dependencies/@openzeppelin-contracts-5.2.0-rc.1/
@openzeppelin/contracts/=dependencies/@openzeppelin-contracts-5.2.0-rc.1/
forge-std/=dependencies/forge-std-1.9.5/
7 changes: 0 additions & 7 deletions soldeer.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,3 @@ version = "5.2.0-rc.1"
url = "https://soldeer-revisions.s3.amazonaws.com/@openzeppelin-contracts/5_2_0-rc_1_18-12-2024_19:26:33_contracts.zip"
checksum = "0430f56c556a4864cb2c0f28edbd497304a1e367d30dd07942778bef3a0f7a5f"
integrity = "17e24d71e2995a505f428ff1e4b514723175d8c6f7b84db6a96cfa31bc73fe23"

[[dependencies]]
name = "forge-std"
version = "1.9.5"
url = "https://soldeer-revisions.s3.amazonaws.com/forge-std/1_9_5_21-12-2024_15:04:05_forge-std-1.9.zip"
checksum = "57ada736f383289db77fac4472d48f820e7c98172cf9b01681b0c37065ce043f"
integrity = "4753ffdfa0dde40878372b6a4d8e8fd1648b190b33996896c8b92f6f1680850f"
Loading