-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtestnet.module.config.json
More file actions
85 lines (85 loc) · 3.57 KB
/
testnet.module.config.json
File metadata and controls
85 lines (85 loc) · 3.57 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"hardhat": {
"defaultNetwork": "xrplevm_testnet",
"solidity": "0.8.20",
"networks": {
"xrplevm_testnet": {
"url": "https://rpc.testnet.xrplevm.org",
"archivalUrl": "https://full-history-0.testnet.xrplevm.org",
"accounts": [
"f81159b8509dbabec1fb48fbbae0bd51153105bb5d39f061192096c40274d100",
"25ed64e00aefb0081cc5c799e4abc916b16961a54a7c97138f7e98b357a60161"
]
}
}
},
"contracts": {
"erc20": {
"abi": [
"function transfer(address to, uint256 amount) external",
"function transferFrom(address from, address to, uint256 amount) external returns (bool)",
"function mint(address to, uint256 amount) external",
"function approve(address spender, uint256 amount) external returns (bool)",
"function balanceOf(address account) external view returns (uint256)",
"function increaseAllowance(address spender, uint256 addedValue) external returns (bool)",
"function allowance(address owner, address spender) external view returns (uint256)",
"function burn(uint256 amount) external",
"function burn(address account, uint256 amount) external",
"function burnFrom(address account, uint256 amount) external",
"function transferOwnership(address newOwner) external",
"function owner() external view returns (address)",
"function totalSupply() external view returns (uint256)",
"function name() external view returns (string)",
"function symbol() external view returns (string)",
"function decimals() external view returns (uint8)",
"event Transfer(address indexed from, address indexed to, uint256 value)",
"event Approval(address indexed owner, address indexed spender, uint256 value)"
],
"contractAddress": "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE",
"owner": "0xdb0a778c57Bd31E401D52ba6cf936D06E1324aE8",
"amount": "1",
"burnAmount": "1",
"faucetFund": "10000000000000000000"
},
"rpc": [
{
"label": "v9.0.0",
"block": {
"number": 4471781,
"hash": "0xdcf1d3b001fffa8e1825865e5c3a7e425eaa2a936e795833bb904041938317e0"
},
"transaction": {
"hash": "0xe59812bc92cda88de7a88ee565c1f28aed9b3747d7e0d7df73d436e749126509",
"index": 2
},
"disabledCalls": []
},
{
"label": "v8.0.0",
"block": {
"number": 3826800,
"hash": "0x7d4f9d8fb36ca91a9c618b76bba5039cecbbafd7ee6efe8163e4b87ee1fde083"
},
"transaction": {
"hash": "0x5c995ca814cce1043928b1901efebcc67a364ba819428ea709c27c1ac1fef0d7",
"index": 0
},
"disabledCalls": []
}
]
},
"chain": {
"id": "xrpl-evm",
"name": "xrpl-evm",
"chainId": 1449000,
"env": "testnet",
"type": "evm",
"symbol": "XRP",
"nativeToken": {
"symbol": "XRP",
"decimals": 18,
"name": "XRP",
"address": "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE"
}
}
}