-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeployment.json
21 lines (21 loc) · 1.26 KB
/
deployment.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"contract": {
"address": "0x5FbDB2315678afecb367f032d93F642f64180aa3",
"signerAddress": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266",
"abi": [
"event CreateAccount(address[] owners, uint256 indexed id, uint256 timestamp)",
"event Deposit(address indexed user, uint256 indexed accountId, uint256 amount, 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 approvedWithdrawl(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)"
]
}
}