Skip to content

Commit

Permalink
Add KeyValuePairs ABI
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgall committed May 6, 2024
1 parent f1d6af4 commit 9757768
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions src/assets/abi/KeyValuePairs.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
const KeyValuePairsAbi = [
{
inputs: [],
name: 'IncorrectValueCount',
type: 'error',
},
{
anonymous: false,
inputs: [
{
indexed: true,
internalType: 'address',
name: 'theAddress',
type: 'address',
},
{
indexed: false,
internalType: 'string',
name: 'key',
type: 'string',
},
{
indexed: false,
internalType: 'string',
name: 'value',
type: 'string',
},
],
name: 'ValueUpdated',
type: 'event',
},
{
inputs: [
{
internalType: 'string[]',
name: '_keys',
type: 'string[]',
},
{
internalType: 'string[]',
name: '_values',
type: 'string[]',
},
],
name: 'updateValues',
outputs: [],
stateMutability: 'nonpayable',
type: 'function',
},
] as const;

export default KeyValuePairsAbi;

0 comments on commit 9757768

Please sign in to comment.