-
Notifications
You must be signed in to change notification settings - Fork 302
Expand file tree
/
Copy pathtip20Abi.ts
More file actions
32 lines (28 loc) · 791 Bytes
/
tip20Abi.ts
File metadata and controls
32 lines (28 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
* TIP20 Token Standard ABI (Skeleton)
*
* TODO: Update this file when TIP20 ABI becomes available
*/
/**
* Placeholder TIP20 ABI
* This is an empty array that should be replaced with the actual ABI
*/
export const TIP20_ABI = [] as const;
/**
* Placeholder for TIP20 Factory ABI
*/
export const TIP20_FACTORY_ABI = [] as const;
/**
* Get the method signature for TIP20 transfer
* TODO: Update with actual method name if different from ERC20
*/
export function getTip20TransferSignature(): string {
return 'transfer(address,uint256)';
}
/**
* Get the method signature for TIP20 transferFrom
* TODO: Update with actual method name if different from ERC20
*/
export function getTip20TransferFromSignature(): string {
return 'transferFrom(address,address,uint256)';
}