-
Notifications
You must be signed in to change notification settings - Fork 17
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 #196 from lc-labs/development
Development
- Loading branch information
Showing
82 changed files
with
8,431 additions
and
5,279 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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"assets": { | ||
"COMP": "0x277FD5f51fE53a9B3707a0383bF930B149C74ABf" | ||
}, | ||
"collateral": { | ||
"DAI": "0x5EBE8927e5495e0A7731888C81AF463cD63602fb", | ||
"WETH": "0x42D0fA25d6d5bff01aC050c0F5aB0B2C9D01b4a3", | ||
"USDbC": "0x6490D66B17A1E9a460Ab54131165C8F921aCcDeB", | ||
"cbETH": "0x5fE248625aC2AB0e17A115fef288f17AF1952402", | ||
"cUSDbCv3": "0xa372EC846131FBf9AE8b589efa3D041D9a94dF41", | ||
"aBasUSDbC": "0x1DdB7dfdC5D26FE1f2aD02d9972f12481346Ae9b" | ||
}, | ||
"erc20s": { | ||
"COMP": "0x9e1028F5F1D5eDE59748FFceE5532509976840E0", | ||
"DAI": "0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb", | ||
"WETH": "0x4200000000000000000000000000000000000006", | ||
"USDbC": "0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA", | ||
"cbETH": "0x2ae3f1ec7f1f5012cfeab0185bfc7aa3cf0dec22", | ||
"cUSDbCv3": "0xbC0033679AEf41Fb9FeB553Fdf55a8Bb2fC5B29e", | ||
"aBasUSDbC": "0x308447562442Cc43978f8274fA722C9C14BafF8b" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
export default [ | ||
// DEPOSIT NATIVE ETH | ||
{ | ||
inputs: [ | ||
{ internalType: 'address', name: '_to', type: 'address' }, | ||
{ internalType: 'uint256', name: '_value', type: 'uint256' }, | ||
{ internalType: 'uint64', name: '_gasLimit', type: 'uint64' }, | ||
{ internalType: 'bool', name: '_isCreation', type: 'bool' }, | ||
{ internalType: 'bytes', name: '_data', type: 'bytes' }, | ||
], | ||
name: 'depositTransaction', | ||
outputs: [], | ||
stateMutability: 'payable', | ||
type: 'function', | ||
}, | ||
// DEPOSIT ERC20 | ||
{ | ||
inputs: [ | ||
{ internalType: 'address', name: '_l1Token', type: 'address' }, | ||
{ internalType: 'address', name: '_l2Token', type: 'address' }, | ||
{ internalType: 'uint256', name: '_amount', type: 'uint256' }, | ||
{ internalType: 'uint32', name: '_minGasLimit', type: 'uint32' }, | ||
{ internalType: 'bytes', name: '_extraData', type: 'bytes' }, | ||
], | ||
name: 'depositERC20', | ||
outputs: [], | ||
stateMutability: 'nonpayable', | ||
type: 'function', | ||
}, | ||
{ | ||
inputs: [ | ||
{ internalType: 'address', name: '_l2Token', type: 'address' }, | ||
{ internalType: 'uint256', name: '_amount', type: 'uint256' }, | ||
{ internalType: 'uint32', name: '_minGasLimit', type: 'uint32' }, | ||
{ internalType: 'bytes', name: '_extraData', type: 'bytes' }, | ||
], | ||
name: 'withdraw', | ||
outputs: [], | ||
stateMutability: 'payable', | ||
type: 'function', | ||
}, | ||
// WITHDRAW ETH | ||
{ | ||
inputs: [ | ||
{ internalType: 'address', name: '_target', type: 'address' }, | ||
{ internalType: 'uint256', name: '_gasLimit', type: 'uint256' }, | ||
{ internalType: 'bytes', name: '_data', type: 'bytes' }, | ||
], | ||
name: 'initiateWithdrawal', | ||
outputs: [], | ||
stateMutability: 'payable', | ||
type: 'function', | ||
}, | ||
// WITHDRAW ERC20 | ||
{ | ||
inputs: [ | ||
{ internalType: 'address', name: '_l2Token', type: 'address' }, | ||
{ internalType: 'uint256', name: '_amount', type: 'uint256' }, | ||
{ internalType: 'uint32', name: '_minGasLimit', type: 'uint32' }, | ||
{ internalType: 'bytes', name: '_extraData', type: 'bytes' }, | ||
], | ||
name: 'withdraw', | ||
outputs: [], | ||
stateMutability: 'payable', | ||
type: 'function', | ||
}, | ||
] as const |
Oops, something went wrong.