Skip to content

Commit

Permalink
add missed file
Browse files Browse the repository at this point in the history
  • Loading branch information
ezra-sg committed Dec 19, 2023
1 parent 494ec6f commit aacee16
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/antelope/stores/utils/abi/setApprovalForAllAbi.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { EvmABI } from '.';

export const setApprovalForAllAbi = [{
'inputs': [{ 'internalType': 'address', 'name': 'operator', 'type': 'address' }, {
'internalType': 'bool',
'name': 'approved',
'type': 'bool',
}],
'name': 'setApprovalForAll',
'outputs': [],
'stateMutability': 'nonpayable',
'type': 'function',
}] as unknown as EvmABI;

0 comments on commit aacee16

Please sign in to comment.