Skip to content

Commit

Permalink
imp: regenerated abi
Browse files Browse the repository at this point in the history
  • Loading branch information
srdtrk committed Dec 20, 2024
1 parent 6664398 commit a7c246c
Show file tree
Hide file tree
Showing 6 changed files with 584 additions and 24 deletions.
44 changes: 37 additions & 7 deletions abi/ICS20Transfer.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
[
{
"type": "constructor",
"inputs": [
{
"name": "owner_",
"type": "address",
"internalType": "address"
}
],
"inputs": [],
"stateMutability": "nonpayable"
},
{
Expand Down Expand Up @@ -42,6 +36,19 @@
],
"stateMutability": "view"
},
{
"type": "function",
"name": "initialize",
"inputs": [
{
"name": "ics26Router",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"type": "function",
"name": "multicall",
Expand Down Expand Up @@ -534,6 +541,19 @@
"outputs": [],
"stateMutability": "nonpayable"
},
{
"type": "event",
"name": "Initialized",
"inputs": [
{
"name": "version",
"type": "uint64",
"indexed": false,
"internalType": "uint64"
}
],
"anonymous": false
},
{
"type": "event",
"name": "OwnershipTransferred",
Expand Down Expand Up @@ -693,6 +713,16 @@
}
]
},
{
"type": "error",
"name": "InvalidInitialization",
"inputs": []
},
{
"type": "error",
"name": "NotInitializing",
"inputs": []
},
{
"type": "error",
"name": "OwnableInvalidOwner",
Expand Down
49 changes: 42 additions & 7 deletions abi/ICS26Router.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
[
{
"type": "constructor",
"inputs": [
{
"name": "owner",
"type": "address",
"internalType": "address"
}
],
"inputs": [],
"stateMutability": "nonpayable"
},
{
Expand Down Expand Up @@ -187,6 +181,24 @@
],
"stateMutability": "view"
},
{
"type": "function",
"name": "initialize",
"inputs": [
{
"name": "owner_",
"type": "address",
"internalType": "address"
},
{
"name": "icsCore",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"type": "function",
"name": "multicall",
Expand Down Expand Up @@ -586,6 +598,19 @@
],
"anonymous": false
},
{
"type": "event",
"name": "Initialized",
"inputs": [
{
"name": "version",
"type": "uint64",
"indexed": false,
"internalType": "uint64"
}
],
"anonymous": false
},
{
"type": "event",
"name": "Noop",
Expand Down Expand Up @@ -992,6 +1017,11 @@
}
]
},
{
"type": "error",
"name": "InvalidInitialization",
"inputs": []
},
{
"type": "error",
"name": "InvalidMerklePrefix",
Expand All @@ -1003,6 +1033,11 @@
}
]
},
{
"type": "error",
"name": "NotInitializing",
"inputs": []
},
{
"type": "error",
"name": "OwnableInvalidOwner",
Expand Down
44 changes: 37 additions & 7 deletions abi/ICSCore.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
[
{
"type": "constructor",
"inputs": [
{
"name": "owner_",
"type": "address",
"internalType": "address"
}
],
"inputs": [],
"stateMutability": "nonpayable"
},
{
Expand Down Expand Up @@ -101,6 +95,19 @@
],
"stateMutability": "view"
},
{
"type": "function",
"name": "initialize",
"inputs": [
{
"name": "owner_",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"type": "function",
"name": "migrateClient",
Expand Down Expand Up @@ -243,6 +250,19 @@
],
"anonymous": false
},
{
"type": "event",
"name": "Initialized",
"inputs": [
{
"name": "version",
"type": "uint64",
"indexed": false,
"internalType": "uint64"
}
],
"anonymous": false
},
{
"type": "event",
"name": "OwnershipTransferred",
Expand Down Expand Up @@ -295,6 +315,16 @@
}
]
},
{
"type": "error",
"name": "InvalidInitialization",
"inputs": []
},
{
"type": "error",
"name": "NotInitializing",
"inputs": []
},
{
"type": "error",
"name": "OwnableInvalidOwner",
Expand Down
157 changes: 156 additions & 1 deletion abigen/ics20transfer/contract.go

Large diffs are not rendered by default.

157 changes: 156 additions & 1 deletion abigen/ics26router/contract.go

Large diffs are not rendered by default.

Loading

0 comments on commit a7c246c

Please sign in to comment.