-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeployment.json
19 lines (19 loc) · 1.04 KB
/
deployment.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"contract": {
"abi": [
"event AccountCreated(address[] owners, uint256 indexed id, uint256 timestamp)",
"event Deposite(address indexed user, uint256 indexed accountId, uint256 value, uint256 timestamp)",
"event Withdraw(uint256 indexed withdrawId, uint256 timestamp)",
"event WithdrawRequested(address indexed user, uint256 indexed accountId, uint256 indexed withdrawId, uint256 amount, uint256 timestamp)",
"function approveWithdrawl(uint256 accountId, uint256 withdrawId)",
"function createAccount(address[] otherOwners)",
"function deposit(uint256 accountId) payable",
"function getAccounts() view returns (uint256[])",
"function getApprovals(uint256 accountId, uint256 withdrawId) view returns (uint256)",
"function getBalance(uint256 accountId) view returns (uint256)",
"function getOwners(uint256 accountId) view returns (address[])",
"function requestWithdrawl(uint256 accountId, uint256 amount)",
"function withdraw(uint256 accountId, uint256 withdrawId)"
]
}
}