rename 'abi-COIN-network.js' 为 'abi_COIN_network.js'; 增加 social_ids.js

This commit is contained in:
Luk
2024-10-13 20:48:27 +08:00
parent 0e3935fe7f
commit 5ac17e3619
11 changed files with 102 additions and 9 deletions

176
abi_VIC_ethereum.js Normal file
View File

@@ -0,0 +1,176 @@
// from https://cn.etherscan.com/address/0xA5D1Eb8bBB42b7f2EBBebF174B3966510243F30c#code
module.exports = [
{ constant: true, inputs: [], name: 'name', outputs: [{ name: '', type: 'string' }], payable: false, stateMutability: 'view', type: 'function' },
{
constant: false,
inputs: [
{ name: '_spender', type: 'address' },
{ name: '_value', type: 'uint256' },
],
name: 'approve',
outputs: [{ name: 'success', type: 'bool' }],
payable: false,
stateMutability: 'nonpayable',
type: 'function',
},
{ constant: true, inputs: [], name: 'totalSupply', outputs: [{ name: '', type: 'uint256' }], payable: false, stateMutability: 'view', type: 'function' },
{
constant: false,
inputs: [
{ name: '_from', type: 'address' },
{ name: '_to', type: 'address' },
{ name: '_value', type: 'uint256' },
],
name: 'transferFrom',
outputs: [{ name: 'success', type: 'bool' }],
payable: false,
stateMutability: 'nonpayable',
type: 'function',
},
{ constant: true, inputs: [], name: 'decimals', outputs: [{ name: '', type: 'uint8' }], payable: false, stateMutability: 'view', type: 'function' },
{
constant: false,
inputs: [{ name: '_value', type: 'uint256' }],
name: 'burn',
outputs: [{ name: 'success', type: 'bool' }],
payable: false,
stateMutability: 'nonpayable',
type: 'function',
},
{
constant: false,
inputs: [{ name: '_value', type: 'uint256' }],
name: 'unfreeze',
outputs: [{ name: 'success', type: 'bool' }],
payable: false,
stateMutability: 'nonpayable',
type: 'function',
},
{
constant: false,
inputs: [{ name: 'amount', type: 'uint256' }],
name: 'withdrawByOwner',
outputs: [],
payable: false,
stateMutability: 'nonpayable',
type: 'function',
},
{
constant: true,
inputs: [{ name: '', type: 'address' }],
name: 'balanceOf',
outputs: [{ name: '', type: 'uint256' }],
payable: false,
stateMutability: 'view',
type: 'function',
},
{
constant: false,
inputs: [{ name: 'tokenSymbolNew', type: 'string' }],
name: 'resetTokenSymbol',
outputs: [],
payable: false,
stateMutability: 'nonpayable',
type: 'function',
},
{ constant: true, inputs: [], name: 'owner', outputs: [{ name: '', type: 'address' }], payable: false, stateMutability: 'view', type: 'function' },
{ constant: true, inputs: [], name: 'symbol', outputs: [{ name: '', type: 'string' }], payable: false, stateMutability: 'view', type: 'function' },
{
constant: false,
inputs: [
{ name: '_to', type: 'address' },
{ name: '_value', type: 'uint256' },
],
name: 'transfer',
outputs: [{ name: 'success', type: 'bool' }],
payable: false,
stateMutability: 'nonpayable',
type: 'function',
},
{
constant: true,
inputs: [{ name: '', type: 'address' }],
name: 'freezeOf',
outputs: [{ name: '', type: 'uint256' }],
payable: false,
stateMutability: 'view',
type: 'function',
},
{
constant: false,
inputs: [{ name: 'tokenNameNew', type: 'string' }],
name: 'resetTokenName',
outputs: [],
payable: false,
stateMutability: 'nonpayable',
type: 'function',
},
{
constant: false,
inputs: [{ name: '_value', type: 'uint256' }],
name: 'freeze',
outputs: [{ name: 'success', type: 'bool' }],
payable: false,
stateMutability: 'nonpayable',
type: 'function',
},
{
constant: true,
inputs: [
{ name: '', type: 'address' },
{ name: '', type: 'address' },
],
name: 'allowance',
outputs: [{ name: '', type: 'uint256' }],
payable: false,
stateMutability: 'view',
type: 'function',
},
{
inputs: [
{ name: 'tokenSymbol', type: 'string' },
{ name: 'tokenName', type: 'string' },
{ name: 'tokenSupply', type: 'uint256' },
],
payable: false,
stateMutability: 'nonpayable',
type: 'constructor',
},
{
anonymous: false,
inputs: [
{ indexed: true, name: 'from', type: 'address' },
{ indexed: true, name: 'to', type: 'address' },
{ indexed: false, name: 'value', type: 'uint256' },
],
name: 'Transfer',
type: 'event',
},
{
anonymous: false,
inputs: [
{ indexed: true, name: 'from', type: 'address' },
{ indexed: false, name: 'value', type: 'uint256' },
],
name: 'Burn',
type: 'event',
},
{
anonymous: false,
inputs: [
{ indexed: true, name: 'from', type: 'address' },
{ indexed: false, name: 'value', type: 'uint256' },
],
name: 'Freeze',
type: 'event',
},
{
anonymous: false,
inputs: [
{ indexed: true, name: 'from', type: 'address' },
{ indexed: false, name: 'value', type: 'uint256' },
],
name: 'Unfreeze',
type: 'event',
},
]