File tree
6 files changed
+42
-27
lines changed- lib
- script
- test
6 files changed
+42
-27
lines changedSubmodule axelar-gmp-sdk-solidity updated 78 files
- .changeset/README.md+8
- .changeset/config.json+11
- .github/actions/nodejs-ci/action.yaml+24
- .github/actions/setup-tools/action.yaml+20
- .github/workflows/codecov.yaml+8-12
- .github/workflows/conventional-commits.yaml+2-2
- .github/workflows/create-release-pr.yaml+83
- .github/workflows/lint.yaml+22-11
- .github/workflows/publish-bytecode.yaml-59
- .github/workflows/publish-to-npm.yaml-34
- .github/workflows/release-dry-run.yaml-34
- .github/workflows/release-snapshot.yaml+27
- .github/workflows/release.yaml+120-69
- .github/workflows/slither.yaml+6-10
- .github/workflows/test.yaml+10-12
- CHANGELOG.md+26
- DESIGN.md+5-5
- README.md+1-1
- contracts/executable/AxelarExecutable.sol+44-38
- contracts/executable/AxelarExecutableWithToken.sol+21-21
- contracts/executable/AxelarGMPExecutable.sol-74
- contracts/express/AxelarExpressExecutableWithToken.sol+61-29
- contracts/express/AxelarValuedExpressExecutable.sol+25-147
- contracts/express/AxelarValuedExpressExecutableWithToken.sol+213
- contracts/express/ExpressExecutorTracker.sol+6-6
- contracts/gas-estimation/InterchainGasEstimation.sol+1-1
- contracts/gateway/AxelarAmplifierGateway.sol+8-1
- contracts/gateway/BaseAmplifierGateway.sol+3-1
- contracts/gateway/INTEGRATION.md+31-4
- contracts/gateway/README.md+4
- contracts/governance/AxelarServiceGovernance.sol+35-35
- contracts/governance/BaseMultisig.sol+1-1
- contracts/governance/BaseWeightedMultisig.sol+13-15
- contracts/governance/InterchainGovernance.sol+1-14
- contracts/governance/InterchainMultisig.sol+1-1
- contracts/interfaces/IAxelarExecutable.sol+25-9
- contracts/interfaces/IAxelarExecutableWithToken.sol+5-22
- contracts/interfaces/IAxelarExpressExecutable.sol-78
- contracts/interfaces/IAxelarExpressExecutableWithToken.sol+89
- contracts/interfaces/IAxelarGMPExecutable.sol-44
- contracts/interfaces/IAxelarGMPGateway.sol-81
- contracts/interfaces/IAxelarGateway.sol+46-157
- contracts/interfaces/IAxelarGatewayWithToken.sol+4-4
- contracts/interfaces/IAxelarServiceGovernance.sol+16-16
- contracts/interfaces/IAxelarValuedExpressExecutable.sol+1-19
- contracts/interfaces/IAxelarValuedExpressExecutableWithToken.sol+30
- contracts/interfaces/IBaseAmplifierGateway.sol+2-2
- contracts/interfaces/IBaseWeightedMultisig.sol+3-3
- contracts/interfaces/IInterchainTransfer.sol+54
- contracts/test/executable/AxelarExecutableTest.sol+3-3
- contracts/test/executable/AxelarExecutableWithTokenTest.sol+41
- contracts/test/executable/GMPExecutableWithTokenTest.sol-61
- contracts/test/executable/TestAxelarExecutable.sol-9
- contracts/test/express/TestAxelarExpressExecutable.sol+19-3
- contracts/test/express/TestAxelarValuedExpressExecutable.sol+19-3
- contracts/test/gmp/DestinationChainReceiver.sol+1
- contracts/test/gmp/DestinationChainSwapExecutable.sol+15-7
- contracts/test/gmp/DestinationChainSwapExpress.sol+21-10
- contracts/test/gmp/DestinationChainSwapExpressDisabled.sol+12-10
- contracts/test/gmp/ExecutableSample.sol+27-4
- contracts/test/gmp/ExpressExecutableTest.sol+16-7
- contracts/test/gmp/SourceChainSwapCaller.sol+3-3
- contracts/test/gmp/ValuedExpressExecutableTest.sol+18-9
- contracts/test/governance/TestInterchainGovernance.sol+2-11
- contracts/test/mocks/MockGateway.sol+17-151
- contracts/types/WeightedMultisigTypes.sol+3-4
- contracts/utils/InterchainAddressTracker.sol+1-1
- contracts/utils/TimeLock.sol+1-1
- hardhat.config.js+12
- package-lock.json+2.1k-547
- package.json+10-2
- test/GMP/GMP.js-1
- test/GMP/GMPE.js+20-14
- test/executable/AxelarExecutable.js+13-25
- test/executable/AxelarExecutableWithToken.js+34-26
- test/governance/AxelarServiceGovernance.js+65-65
- test/governance/BaseWeightedMultisig.js+5-5
- test/governance/InterchainGovernance.js+1-9
Submodule interchain-token-service updated 60 files
- .changeset/README.md+8
- .changeset/config.json+11
- .github/actions/nodejs-ci/action.yaml+24
- .github/actions/setup-tools/action.yaml+20
- .github/workflows/codecov.yaml+49
- .github/workflows/conventional-commits.yaml+6-2
- .github/workflows/coverage.yaml-60
- .github/workflows/create-release-pr.yaml+83
- .github/workflows/lint.yaml+12-15
- .github/workflows/publish-bytecode.yaml-54
- .github/workflows/publish-to-npm.yaml-37
- .github/workflows/release-dry-run.yaml-34
- .github/workflows/release-snapshot.yaml+27
- .github/workflows/release.yaml+120-69
- .github/workflows/slither.yaml+28
- .github/workflows/slither.yml-16
- .github/workflows/test.yaml+11-15
- CHANGELOG.md+34
- DESIGN.md+30-8
- README.md+24-2
- RELEASE.md+62
- codecov.yml+10
- contracts/InterchainTokenFactory.sol+371-98
- contracts/InterchainTokenService.sol+396-290
- contracts/TokenHandler.sol+92-86
- contracts/interfaces/IFlowLimit.sol+2
- contracts/interfaces/IGatewayCaller.sol+38
- contracts/interfaces/IInterchainTokenFactory.sol+163-22
- contracts/interfaces/IInterchainTokenService.sol+63-57
- contracts/interfaces/ITokenHandler.sol+20-29
- contracts/interfaces/ITokenManagerDeployer.sol-1
- contracts/test/TestInterchainTokenService.sol+7-13
- contracts/test/utils/TestCreate3Fixed.sol+19
- contracts/test/utils/TestGatewayCaller.sol+11
- contracts/token-manager/TokenManager.sol+12-1
- contracts/types/InterchainTokenServiceTypes.sol+36
- contracts/utils/Create3AddressFixed.sol+29
- contracts/utils/Create3Fixed.sol+46
- contracts/utils/FlowLimit.sol+4
- contracts/utils/GatewayCaller.sol+70
- contracts/utils/InterchainTokenDeployer.sol+3-3
- contracts/utils/TokenManagerDeployer.sol+2-2
- docs/index.md+2.5k-1.8k
- funding.json+5
- hardhat.config.js+31-5
- package-lock.json+1.5k-689
- package.json+14-11
- scripts/deploy.js+6-1
- scripts/flatten-contracts.sh+1-1
- scripts/utils.js+1-20
- test/AddressDerivation.js+7-24
- test/ERC20.js+2-2
- test/ERC20Permit.js+2-2
- test/InterchainToken.js+20-5
- test/InterchainTokenFactory.js+734-83
- test/InterchainTokenService.js+1.1k-654
- test/InterchainTokenServiceFullFlow.js+320-37
- test/InterchainTokenServiceUpgradeFlow.js+30-28
- test/UtilsTest.js+78-8
- test/constants.js+47
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
4 | 4 |
| |
5 | 5 |
| |
6 | 6 |
| |
| 7 | + | |
7 | 8 |
| |
8 | 9 |
| |
9 | 10 |
| |
| |||
50 | 51 |
| |
51 | 52 |
| |
52 | 53 |
| |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
53 | 90 |
| |
54 | 91 |
| |
55 | 92 |
| |
|
+1-23
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
3 | 3 |
| |
4 | 4 |
| |
5 | 5 |
| |
6 |
| - | |
7 |
| - | |
8 |
| - | |
9 |
| - | |
10 | 6 |
| |
11 | 7 |
| |
12 | 8 |
| |
| |||
19 | 15 |
| |
20 | 16 |
| |
21 | 17 |
| |
22 |
| - | |
| 18 | + | |
23 | 19 |
| |
24 | 20 |
| |
25 | 21 |
| |
| |||
35 | 31 |
| |
36 | 32 |
| |
37 | 33 |
| |
38 |
| - | |
39 |
| - | |
40 |
| - | |
41 |
| - | |
42 |
| - | |
43 |
| - | |
44 |
| - | |
45 |
| - | |
46 |
| - | |
47 |
| - | |
48 |
| - | |
49 |
| - | |
50 |
| - | |
51 |
| - | |
52 |
| - | |
53 |
| - | |
54 |
| - | |
55 |
| - | |
56 | 34 |
| |
57 | 35 |
| |
58 | 36 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
19 | 19 |
| |
20 | 20 |
| |
21 | 21 |
| |
22 |
| - | |
| 22 | + | |
23 | 23 |
| |
24 | 24 |
| |
25 | 25 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
31 | 31 |
| |
32 | 32 |
| |
33 | 33 |
| |
34 |
| - | |
| 34 | + | |
35 | 35 |
| |
36 | 36 |
| |
37 | 37 |
| |
|
0 commit comments