Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prototyping canonical SolanaTBTC token with Anchor #650

Merged
merged 28 commits into from
Aug 2, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
1a8535c
Anchor prototype of solana tbtc
eth-r Jul 11, 2023
7347a93
Improve tests and add events
eth-r Jul 14, 2023
b86a039
Update config and improve tests
eth-r Jul 18, 2023
d891662
Test more errors
eth-r Jul 18, 2023
360ee5b
Replace creator with authority
eth-r Jul 19, 2023
af4483d
Update file structure
eth-r Jul 19, 2023
9e8224b
Isolate yarn changes to cross-chain/solana
eth-r Jul 19, 2023
283fc5d
Remove traces of yarn in repo root
eth-r Jul 19, 2023
336d2b3
Restore old yarn.lock
eth-r Jul 19, 2023
e96d926
Fix file ending in yarn.lock
eth-r Jul 19, 2023
642e60a
Restructure solana files
eth-r Jul 31, 2023
c4e9bc8
solana: reformat; pin solana to 1.14
a5-pickle Jul 31, 2023
1892686
Add current state of wormhole gateway
eth-r Jul 31, 2023
136d04e
Remove second signers from adding minter and guardian
eth-r Jul 31, 2023
5c18024
Remove autocompleted typo from wormhole_gateway
eth-r Jul 31, 2023
89f4a0b
solana: refactor tbtc program
a5-pickle Jul 31, 2023
f58a45d
checkpoint: wormhole gateway still broken
a5-pickle Jul 31, 2023
5d7877d
Add iteration for guardians
eth-r Aug 1, 2023
73964de
Add iteration of minters
eth-r Aug 1, 2023
5c00165
Two-stage authority change
eth-r Aug 1, 2023
7a6df17
Revert "Add iteration of minters"
eth-r Aug 1, 2023
23bfffc
Revert "Add iteration for guardians"
eth-r Aug 1, 2023
9fbab8a
solana: clean up tbtc directory
a5-pickle Aug 1, 2023
3a45a46
solana: add token bridge cpi
a5-pickle Aug 1, 2023
17ae475
solana: remove yarn.lock; add package-lock.json; add wormhole sdk
a5-pickle Aug 1, 2023
290a22a
solana: wormhole-gatway tests in progress
a5-pickle Aug 2, 2023
518a888
Merge branch 'main' into solana-anchor
eth-r Aug 2, 2023
145d4f2
Merge branch 'main' into solana-anchor
pdyraga Aug 2, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ dist/
.envrc

yarn-error.log
.yarn/
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
8 changes: 8 additions & 0 deletions cross-chain/solana/solana-tbtc-anchor/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

.anchor
.DS_Store
target
**/*.rs.bk
node_modules
test-ledger
.yarn
8 changes: 8 additions & 0 deletions cross-chain/solana/solana-tbtc-anchor/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

.anchor
.DS_Store
target
node_modules
dist
build
test-ledger
15 changes: 15 additions & 0 deletions cross-chain/solana/solana-tbtc-anchor/Anchor.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[features]
seeds = false
skip-lint = false
[programs.localnet]
solana_tbtc_anchor = "HksEtDgsXJV1BqcuhzbLRTmXp5gHgHJktieJCtQd3pG"

[registry]
url = "https://api.apr.dev"

[provider]
cluster = "Localnet"
wallet = "/home/eth/.config/solana/id.json"
dimpar marked this conversation as resolved.
Show resolved Hide resolved

[scripts]
test = "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/**/*.ts"
Loading