github.com/stafiprotocol/go-substrate-rpc-client@v1.4.7/config/stafi.go (about) 1 package config 2 3 const ( 4 RTokenSeriesModuleId = "RTokenSeries" 5 StorageReceiver = "Receiver" 6 7 LiquidityBondEventId = "LiquidityBond" 8 ExecuteBondAndSwapEventId = "ExecuteBondAndSwap" 9 NominationUpdatedEventId = "NominationUpdated" 10 ValidatorUpdatedEventId = "ValidatorUpdated" 11 12 RClaimModuleId = "RClaim" 13 14 StorageActLatestCycle = "ActLatestCycle" 15 StorageREthActLatestCycle = "REthActLatestCycle" 16 StorageActs = "Acts" 17 StorageREthActs = "REthActs" 18 StorageREthActCurrentCycle = "REthActCurrentCycle" 19 StorageMintTxHashExist = "MintTxHashExist" 20 21 StorageBondRecords = "BondRecords" 22 StorageBondStates = "BondStates" 23 MethodExecuteBondRecord = "RTokenSeries.execute_bond_record" 24 MethodExecuteBondAndSwap = "RTokenSeries.execute_bond_and_swap" 25 StorageNominated = "Nominated" 26 27 RtokenVoteModuleId = "RTokenVotes" 28 StorageVotes = "Votes" 29 MethodRacknowledgeProposal = "RTokenVotes.acknowledge_proposal" 30 31 RTokenLedgerModuleId = "RTokenLedger" 32 EraPoolUpdatedEventId = "EraPoolUpdated" 33 EraUpdatedEventId = "EraUpdated" 34 BondingDurationEventId = "BondingDurationUpdated" 35 36 RTokenRelayersModuleId = "Relayers" 37 StorageChainEras = "ChainEras" 38 StorageActiveChangeRateLimit = "ActiveChangeRateLimit" 39 StorageCurrentEraSnapShots = "CurrentEraSnapShots" 40 StorageRelayerThreshold = "RelayerThreshold" 41 StorageEraSnapShots = "EraSnapShots" 42 StorageLeastBond = "LeastBond" 43 StoragePendingStake = "PendingStake" 44 StoragePendingReward = "PendingReward" 45 MethodSetChainEra = "RTokenLedger.set_chain_era" 46 MethodBondReport = "RTokenLedger.bond_report" 47 MethodUpdateRethClaimInfo = "RClaim.update_reth_claim_info" 48 MethodNewBondReport = "RTokenLedger.new_bond_report" 49 MethodActiveReport = "RTokenLedger.active_report" 50 MethodNewActiveReport = "RTokenLedger.new_active_report" 51 MethodBondAndReportActive = "RTokenLedger.bond_and_report_active" 52 MethodBondAndReportActiveWithPendingValue = "RTokenLedger.bond_and_report_active_with_pending_value" 53 MethodWithdrawReport = "RTokenLedger.withdraw_report" 54 MethodTransferReport = "RTokenLedger.transfer_report" 55 BondReportedEventId = "BondReported" 56 ActiveReportedEventId = "ActiveReported" 57 WithdrawReportedEventId = "WithdrawReported" 58 TransferReportedEventId = "TransferReported" 59 StorageSubAccounts = "SubAccounts" 60 StorageMultiThresholds = "MultiThresholds" 61 StorageBondedPools = "BondedPools" 62 StorageSnapshots = "Snapshots" 63 StoragePoolUnbonds = "PoolUnbonds" 64 SignaturesEnoughEventId = "SignaturesEnough" 65 StorageSignatures = "Signatures" 66 SubmitSignatures = "RTokenSeries.submit_signatures" 67 68 RTokenUnbondEventId = "LiquidityUnBond" 69 70 RTokenBalanceModuleId = "RBalances" 71 RTokenTransferEventId = "Transfer" 72 RTokenMintedEventId = "Minted" 73 RTokenBurnedEventId = "Burned" 74 StorageTotalIssuance = "TotalIssuance" 75 76 RTokenRateModuleId = "RTokenRate" 77 RTokenRateSetEventId = "RateSet" 78 StorageEraRate = "EraRate" 79 80 RFisModuleId = "RFis" 81 RFisUnbondEventId = "LiquidityUnBond" 82 RFisWithdrawUnbondEventId = "LiquidityWithdrawUnBond" 83 84 EraPayoutEventId = "EraPayout" 85 86 RDexSwapModuleId = "RDexSwap" 87 RDexSwapEventId = "Swap" 88 RDexAddLiquidityEventId = "AddLiquidity" 89 RDexRmLiquidityEventId = "RemoveLiquidity" 90 )