-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #334 from Instadapp/f/zero-x
fix: update 0x-v2 connectors
- Loading branch information
Showing
10 changed files
with
95 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,40 @@ | ||
import { AbiItem } from 'web3-utils' | ||
|
||
export const ZEROX_A: AbiItem[] = [{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"buyToken","type":"address"},{"indexed":false,"internalType":"address","name":"sellToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"buyAmt","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellAmt","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"setId","type":"uint256"}],"name":"LogSwap","type":"event"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"buyAddr","type":"address"},{"internalType":"address","name":"sellAddr","type":"address"},{"internalType":"uint256","name":"sellAmt","type":"uint256"},{"internalType":"uint256","name":"unitAmt","type":"uint256"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"uint256","name":"setId","type":"uint256"}],"name":"swap","outputs":[{"internalType":"string","name":"_eventName","type":"string"},{"internalType":"bytes","name":"_eventParam","type":"bytes"}],"stateMutability":"payable","type":"function"}] | ||
export const ZEROX_A: AbiItem[] = [ | ||
{ | ||
anonymous: false, | ||
inputs: [ | ||
{ indexed: false, internalType: 'address', name: 'buyToken', type: 'address' }, | ||
{ indexed: false, internalType: 'address', name: 'sellToken', type: 'address' }, | ||
{ indexed: false, internalType: 'uint256', name: 'buyAmt', type: 'uint256' }, | ||
{ indexed: false, internalType: 'uint256', name: 'sellAmt', type: 'uint256' }, | ||
{ indexed: false, internalType: 'uint256', name: 'setId', type: 'uint256' } | ||
], | ||
name: 'LogSwap', | ||
type: 'event' | ||
}, | ||
{ | ||
inputs: [], | ||
name: 'name', | ||
outputs: [{ internalType: 'string', name: '', type: 'string' }], | ||
stateMutability: 'view', | ||
type: 'function' | ||
}, | ||
{ | ||
inputs: [ | ||
{ internalType: 'address', name: 'buyAddr', type: 'address' }, | ||
{ internalType: 'address', name: 'sellAddr', type: 'address' }, | ||
{ internalType: 'uint256', name: 'sellAmt', type: 'uint256' }, | ||
{ internalType: 'uint256', name: 'unitAmt', type: 'uint256' }, | ||
{ internalType: 'bytes', name: 'callData', type: 'bytes' }, | ||
{ internalType: 'uint256', name: 'setId', type: 'uint256' } | ||
], | ||
name: 'swap', | ||
outputs: [ | ||
{ internalType: 'string', name: '_eventName', type: 'string' }, | ||
{ internalType: 'bytes', name: '_eventParam', type: 'bytes' } | ||
], | ||
stateMutability: 'payable', | ||
type: 'function' | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import { AbiItem } from 'web3-utils' | ||
|
||
export const ZEROX_V2_A: AbiItem[] = [ | ||
{ | ||
anonymous: false, | ||
inputs: [ | ||
{ indexed: false, internalType: 'address', name: 'buyToken', type: 'address' }, | ||
{ indexed: false, internalType: 'address', name: 'sellToken', type: 'address' }, | ||
{ indexed: false, internalType: 'uint256', name: 'buyAmt', type: 'uint256' }, | ||
{ indexed: false, internalType: 'uint256', name: 'sellAmt', type: 'uint256' }, | ||
{ indexed: false, internalType: 'uint256', name: 'setId', type: 'uint256' } | ||
], | ||
name: 'LogSwap', | ||
type: 'event' | ||
}, | ||
{ | ||
inputs: [], | ||
name: 'name', | ||
outputs: [{ internalType: 'string', name: '', type: 'string' }], | ||
stateMutability: 'view', | ||
type: 'function' | ||
}, | ||
{ | ||
inputs: [ | ||
{ internalType: 'address', name: 'buyAddr', type: 'address' }, | ||
{ internalType: 'address', name: 'sellAddr', type: 'address' }, | ||
{ internalType: 'uint256', name: 'sellAmt', type: 'uint256' }, | ||
{ internalType: 'uint256', name: 'unitAmt', type: 'uint256' }, | ||
{ internalType: 'bytes', name: 'callData', type: 'bytes' }, | ||
{ internalType: 'uint256', name: 'setId', type: 'uint256' } | ||
], | ||
name: 'swap', | ||
outputs: [ | ||
{ internalType: 'string', name: '_eventName', type: 'string' }, | ||
{ internalType: 'bytes', name: '_eventParam', type: 'bytes' } | ||
], | ||
stateMutability: 'payable', | ||
type: 'function' | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters