-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6f334e8
commit 85f5fb2
Showing
9 changed files
with
65 additions
and
73 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export * from './bridges' | ||
export * from './chains' | ||
export * from './coin' | ||
export * from './wallet' | ||
export * from './wallet' |
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 +1 @@ | ||
export * from './address' | ||
export * from './address' |
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
export default [ | ||
'function balanceOf(address owner) view returns (uint256)', | ||
'function decimals() view returns (uint8)', | ||
'function symbol() view returns (string)', | ||
|
||
'function earned(address account) public view returns (uint256)', | ||
'function allowance(address owner, address spender) external view returns (uint256)', | ||
|
||
'function totalSupply() public view returns (uint256)', | ||
'function currentReward() public view returns (uint256)', | ||
'function lastTimeRewardApplicable() public view returns (uint256)', | ||
'function rewardPerToken() public view returns (uint256)', | ||
|
||
'function transfer(address to, uint amount) returns (boolean)', | ||
'function burn(uint256 amount, bytes32 to) returns (boolean)', | ||
'function approve(address spender, uint256 amount) external returns (bool)', | ||
'function stake(uint256 amount) external', | ||
'function withdraw(uint256 amount) external', | ||
'function getReward() external', | ||
'function claim(uint256 index, address account, uint256 amount, bytes32[] calldata merkleProof) external', | ||
|
||
'event Transfer(address indexed from, address indexed to, uint amount)', | ||
] |
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