-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into bug/set-range-order-z…
…ero-liquidity * origin/main: fix: disable try-state checks (#4576) chore: debug solana in CI 🐛 (#4580) refactor: pass tx_ref as an extrinsic parameter (#4579) fix: remove bounded balance check (#4575) Solana: update image to latest tag (#4574) feat: add boost lp account to bouncer and fund it on setup_swaps (#4552) feat: Expose tx_hash on BroadcastSuccess event (#4561) feat: Relative Slippage Limits (PRO-1207) (#4547) chore: disable localnet solana in CI ⏱️ (#4569) feat: store prewitnessed deposits with id (#4496) Feat: Scheduled Swaps Subscription (#4525) # Conflicts: # state-chain/pallets/cf-pools/src/tests.rs
- Loading branch information
Showing
59 changed files
with
1,742 additions
and
477 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,7 @@ gh release download \ | |
|
||
unzip -u ${ZIP_FILE} \ | ||
'vault.json' \ | ||
'cf_tester.json' \ | ||
-d $TARGET_DIR | ||
|
||
rm ${ZIP_FILE} |
140 changes: 140 additions & 0 deletions
140
contract-interfaces/sol-program-idls/v0.1.1/cf_tester.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
{ | ||
"version": "0.1.0", | ||
"name": "cf_tester", | ||
"instructions": [ | ||
{ | ||
"name": "cfReceiveToken", | ||
"accounts": [ | ||
{ | ||
"name": "cfPdaSigner", | ||
"isMut": false, | ||
"isSigner": true | ||
}, | ||
{ | ||
"name": "receiverTokenAccount", | ||
"isMut": true, | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "tokenProgram", | ||
"isMut": false, | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "mint", | ||
"isMut": false, | ||
"isSigner": false | ||
} | ||
], | ||
"args": [ | ||
{ | ||
"name": "sourceChain", | ||
"type": "u32" | ||
}, | ||
{ | ||
"name": "sourceAddress", | ||
"type": "bytes" | ||
}, | ||
{ | ||
"name": "message", | ||
"type": "bytes" | ||
}, | ||
{ | ||
"name": "amount", | ||
"type": "u64" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "cfReceiveNative", | ||
"accounts": [ | ||
{ | ||
"name": "cfPdaSigner", | ||
"isMut": false, | ||
"isSigner": true | ||
}, | ||
{ | ||
"name": "receiverNative", | ||
"isMut": true, | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "systemProgram", | ||
"isMut": false, | ||
"isSigner": false | ||
} | ||
], | ||
"args": [ | ||
{ | ||
"name": "sourceChain", | ||
"type": "u32" | ||
}, | ||
{ | ||
"name": "sourceAddress", | ||
"type": "bytes" | ||
}, | ||
{ | ||
"name": "message", | ||
"type": "bytes" | ||
}, | ||
{ | ||
"name": "amount", | ||
"type": "u64" | ||
} | ||
] | ||
} | ||
], | ||
"events": [ | ||
{ | ||
"name": "ReceivedCCM", | ||
"fields": [ | ||
{ | ||
"name": "signer", | ||
"type": "publicKey", | ||
"index": false | ||
}, | ||
{ | ||
"name": "sourceChain", | ||
"type": "u32", | ||
"index": false | ||
}, | ||
{ | ||
"name": "sourceAddress", | ||
"type": "bytes", | ||
"index": false | ||
}, | ||
{ | ||
"name": "message", | ||
"type": "bytes", | ||
"index": false | ||
}, | ||
{ | ||
"name": "amount", | ||
"type": "u64", | ||
"index": false | ||
}, | ||
{ | ||
"name": "remainingPubkeys", | ||
"type": { | ||
"vec": "publicKey" | ||
}, | ||
"index": false | ||
}, | ||
{ | ||
"name": "remainingIsSigner", | ||
"type": { | ||
"vec": "bool" | ||
}, | ||
"index": false | ||
}, | ||
{ | ||
"name": "remainingIsWritable", | ||
"type": { | ||
"vec": "bool" | ||
}, | ||
"index": false | ||
} | ||
] | ||
} | ||
] | ||
} |
Oops, something went wrong.