Compare commits
No commits in common. "dev" and "master" have entirely different histories.
@ -619,88 +619,3 @@ CREATE TABLE `t_staking_cec_record` (
|
|||||||
KEY `idx_account_address` (`account_address`)
|
KEY `idx_account_address` (`account_address`)
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
--
|
|
||||||
-- Table structure for table `t_cec_transfer`
|
|
||||||
--
|
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `t_cec_transfer`;
|
|
||||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
||||||
/*!40101 SET character_set_client = utf8 */;
|
|
||||||
CREATE TABLE `t_cec_transfer` (
|
|
||||||
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
|
|
||||||
`txhash` varchar(255) NOT NULL DEFAULT '' COMMENT 'txhash',
|
|
||||||
`log_index` bigint NOT NULL DEFAULT '0' COMMENT 'log_index',
|
|
||||||
`net_id` bigint NOT NULL DEFAULT '0' COMMENT 'net_id',
|
|
||||||
`contract_address` varchar(60) NOT NULL DEFAULT '' COMMENT 'contract_address',
|
|
||||||
`src_idx` bigint NOT NULL DEFAULT '0' COMMENT 'src_idx',
|
|
||||||
`event_name` varchar(60) NOT NULL DEFAULT '' COMMENT '事件名',
|
|
||||||
`chain_timestamp` bigint NOT NULL DEFAULT '0' COMMENT '链事件时间戳',
|
|
||||||
`from_address` varchar(60) NOT NULL DEFAULT '' COMMENT 'from钱包地址',
|
|
||||||
`to_address` varchar(60) NOT NULL DEFAULT '' COMMENT 'to钱包地址',
|
|
||||||
`value` varchar(60) NOT NULL DEFAULT '' COMMENT '数量',
|
|
||||||
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
|
|
||||||
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
|
|
||||||
PRIMARY KEY (`idx`),
|
|
||||||
KEY `idx_from_address` (`from_address`),
|
|
||||||
KEY `idx_to_address` (`to_address`)
|
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Table structure for table `t_escec_transfer`
|
|
||||||
--
|
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `t_escec_transfer`;
|
|
||||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
||||||
/*!40101 SET character_set_client = utf8 */;
|
|
||||||
CREATE TABLE `t_escec_transfer` (
|
|
||||||
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
|
|
||||||
`txhash` varchar(255) NOT NULL DEFAULT '' COMMENT 'txhash',
|
|
||||||
`log_index` bigint NOT NULL DEFAULT '0' COMMENT 'log_index',
|
|
||||||
`net_id` bigint NOT NULL DEFAULT '0' COMMENT 'net_id',
|
|
||||||
`contract_address` varchar(60) NOT NULL DEFAULT '' COMMENT 'contract_address',
|
|
||||||
`src_idx` bigint NOT NULL DEFAULT '0' COMMENT 'src_idx',
|
|
||||||
`event_name` varchar(60) NOT NULL DEFAULT '' COMMENT '事件名',
|
|
||||||
`chain_timestamp` bigint NOT NULL DEFAULT '0' COMMENT '链事件时间戳',
|
|
||||||
`from_address` varchar(60) NOT NULL DEFAULT '' COMMENT 'from钱包地址',
|
|
||||||
`to_address` varchar(60) NOT NULL DEFAULT '' COMMENT 'to钱包地址',
|
|
||||||
`value` varchar(60) NOT NULL DEFAULT '' COMMENT '数量',
|
|
||||||
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
|
|
||||||
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
|
|
||||||
PRIMARY KEY (`idx`),
|
|
||||||
KEY `idx_from_address` (`from_address`),
|
|
||||||
KEY `idx_to_address` (`to_address`)
|
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Table structure for table `t_vester_deposit_withdraw`
|
|
||||||
--
|
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `t_vester_deposit_withdraw`;
|
|
||||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
||||||
/*!40101 SET character_set_client = utf8 */;
|
|
||||||
CREATE TABLE `t_vester_deposit_withdraw` (
|
|
||||||
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
|
|
||||||
`txhash` varchar(255) NOT NULL DEFAULT '' COMMENT 'txhash',
|
|
||||||
`log_index` bigint NOT NULL DEFAULT '0' COMMENT 'log_index',
|
|
||||||
`net_id` bigint NOT NULL DEFAULT '0' COMMENT 'net_id',
|
|
||||||
`contract_address` varchar(60) NOT NULL DEFAULT '' COMMENT 'contract_address',
|
|
||||||
`src_idx` bigint NOT NULL DEFAULT '0' COMMENT 'src_idx',
|
|
||||||
`event_name` varchar(60) NOT NULL DEFAULT '' COMMENT '事件名',
|
|
||||||
`chain_timestamp` bigint NOT NULL DEFAULT '0' COMMENT '链事件时间戳',
|
|
||||||
`account_address` varchar(60) NOT NULL DEFAULT '' COMMENT '钱包地址',
|
|
||||||
`deposit_amount` varchar(60) NOT NULL DEFAULT '' COMMENT '数量',
|
|
||||||
`withdraw_clamied_amount` varchar(60) NOT NULL DEFAULT '' COMMENT '数量',
|
|
||||||
`withdraw_balance` varchar(60) NOT NULL DEFAULT '' COMMENT 'balance',
|
|
||||||
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
|
|
||||||
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
|
|
||||||
PRIMARY KEY (`idx`),
|
|
||||||
KEY `idx_account_address` (`account_address`),
|
|
||||||
KEY `idx_account_address_event_name` (`account_address`, `event_name`),
|
|
||||||
KEY `idx_event_name` (`event_name`),
|
|
||||||
KEY `idx_src_idx` (`src_idx`),
|
|
||||||
KEY `idx_chain_timestamp` (`chain_timestamp`)
|
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"user_address": "0x50A8e60041A206AcaA5F844a1104896224be6F39",
|
"user_address": "0x50A8e60041A206AcaA5F844a1104896224be6F39",
|
||||||
"private_key": "0xd9ed33809372932059c1ba7b336a33f406b4c55e7430daef8297134c67429d60",
|
"private_key": "0xd9ed33809372932059c1ba7b336a33f406b4c55e7430daef8297134c67429d60",
|
||||||
"block_server": "https://bsc-testnet.blockpi.network/v1/rpc/public"
|
"block_server": "https://bsc-testnet-rpc.publicnode.com"
|
||||||
}
|
}
|
||||||
|
@ -72,36 +72,6 @@
|
|||||||
"contract_name": "stakedEsCecRouter",
|
"contract_name": "stakedEsCecRouter",
|
||||||
"event_name": "UnstakeCec",
|
"event_name": "UnstakeCec",
|
||||||
"init_block": 42997823
|
"init_block": 42997823
|
||||||
},
|
|
||||||
{
|
|
||||||
"contract_name": "esCEC",
|
|
||||||
"event_name": "Transfer",
|
|
||||||
"init_block": 43545340,
|
|
||||||
"pull_block_data": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"contract_name": "TestCEC",
|
|
||||||
"event_name": "Transfer",
|
|
||||||
"init_block": 43603191,
|
|
||||||
"pull_block_data": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"contract_name": "vester",
|
|
||||||
"event_name": "Claim",
|
|
||||||
"init_block": 43808429,
|
|
||||||
"pull_block_data": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"contract_name": "vester",
|
|
||||||
"event_name": "Deposit",
|
|
||||||
"init_block": 43808429,
|
|
||||||
"pull_block_data": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"contract_name": "vester",
|
|
||||||
"event_name": "Withdraw",
|
|
||||||
"init_block": 43808429,
|
|
||||||
"pull_block_data": true
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"refresh_erc721": [
|
"refresh_erc721": [
|
||||||
|
2
third_party/contracts-imtbl
vendored
2
third_party/contracts-imtbl
vendored
@ -1 +1 @@
|
|||||||
Subproject commit c1e8c549e2fe844e6c0306696ef1c8696ce76c50
|
Subproject commit aff4a4b68d4135d20dea4dbee41d7ab082f391b4
|
Loading…
x
Reference in New Issue
Block a user