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

test: add required flag for finality #482

Merged
merged 10 commits into from
Jan 13, 2025
3 changes: 3 additions & 0 deletions axelar-chains-config/info/devnet-amplifier.json
Original file line number Diff line number Diff line change
Expand Up @@ -690,6 +690,9 @@
"rpc": "https://sui-testnet-rpc.publicnode.com:443",
"tokenSymbol": "SUI",
"chainType": "sui",
"finality": "1",
"decimals": 9,
"approxFinalityWaitTime": 1,
"explorer": {
"name": "Suiscan",
"url": "https://suiscan.xyz/testnet"
Expand Down
5 changes: 5 additions & 0 deletions axelar-chains-config/info/testnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -2335,10 +2335,13 @@
}
},
"stellar": {
"name": "Stellar",
"axelarId": "stellar",
"rpc": "https://soroban-testnet.stellar.org",
"horizonRpc": "https://horizon-testnet.stellar.org",
"networkType": "testnet",
"chainType": "stellar",
"contracts": {},
"explorer": {
"name": "Stellar Expert",
"url": "https://stellar.expert/explorer/testnet"
Expand All @@ -2352,6 +2355,8 @@
"rpc": "https://fullnode.testnet.sui.io:443",
"tokenSymbol": "SUI",
"chainType": "sui",
"finality": "1",
"approxFinalityWaitTime": 1,
"explorer": {
"name": "Suiscan",
"url": "https://suiscan.xyz"
Expand Down
2 changes: 1 addition & 1 deletion axelar-chains-config/tests/schema/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export const chainValueSchema = {
approxFinalityWaitTime: { type: 'number' },
timeout: { type: 'number' },
},
required: ['name', 'axelarId', 'rpc', 'tokenSymbol', 'contracts', 'explorer', 'chainType'],
required: ['name', 'axelarId', 'rpc', 'tokenSymbol', 'contracts', 'explorer', 'chainType', 'finality', 'approxFinalityWaitTime'],
};

export const chainsSchema = {
Expand Down
Loading