BlockX Documentation
  • Introduction
    • BlockX
    • Tokens
    • Transactions
    • Inflation
    • Keys
      • Keyring
      • Multisig
    • Gas Fees
    • Wallet and Accounts
      • Adding BlockX to Metamask
      • Adding BlockX to Keplr
      • Transfers Between Wallets
      • Backup
    • Deploying Smart Contracts
      • Remix
      • Hardhat
  • BlockX White Paper
  • The BCX Token
  • Governance
    • Proposals
      • Proposal Tips
      • Submit a Proposal
    • Community Pool
    • Chain Parameters
  • Technical Concepts
    • Architecture
    • Accounts
    • Chain ID
    • Encoding
    • Pending State
  • dApp Developers
    • Establishing Connections
    • BlockX Clients
    • Guides
      • Wallet Integration
      • Smart Contract Incentive Registration
      • Tracing Transactions
      • Query Balances
    • Localnet
      • Single-node
      • Multi-node
    • Testnet
      • Testnet Commands
    • Ethereum JSON-RPC
      • JSON-RPC Server
      • Running the Server
      • Namespaces
      • JSON-RPC Methods
      • Events
    • Tendermint RPC
  • Protocol Developers
    • Modules
      • auth
        • Concepts
        • State
        • AnteHandlers
        • Keepers
        • Vesting
        • Parameters
        • Client Auth
      • bank
        • State
        • Keepers
        • Messages
        • Events
        • Parameters
        • Client
      • crisis
        • State
        • Messages
        • Events
        • Parameters
        • Client
      • distribution
        • Concepts
        • State
        • Begin Block
        • Messages
        • Hooks
        • Events
        • Parameters
        • Client
      • epochs
        • Concepts
        • State
        • Events
        • Keepers
        • Hooks
        • Queries
        • Future Improvements
      • erc20
        • Concepts
        • State
        • State Transitions
        • Transactions
        • Hooks
        • Events
        • Parameters
        • Clients
      • evidence
        • Concepts
        • State
        • Messages
        • Events
        • Parameters
        • BeginBlock
        • Client
      • evm
        • Concepts
        • State
        • State Transitions
        • Transactions
        • ABCI
        • Hooks
        • Events
        • Parameters
        • Client
      • feemarket
        • Concepts
        • State
        • Begin block
        • End block
        • AnteHandlers
        • Keeper
        • Events
        • Client
        • Future Improvements
        • Parameters
      • feesplit
        • Concepts
        • State
        • State Transitions
        • Transactions
        • Hooks
        • Events
        • Parameters
        • Clients
        • Future Improvements
      • gov
        • Concepts
        • State
        • Messages
        • Events
        • Future Improvements
        • Parameters
        • Client
      • incentives
        • Concepts
        • State
        • State Transitions
        • Transactions
        • Hooks
        • Events
        • Parameters
        • Clients
      • ibc-core
      • inflation
        • Concepts
        • State
        • Hooks
        • Events
        • Parameters
        • Clients
      • slashing
        • Concepts
        • State
        • Messages
        • BeginBlock
        • Hooks
        • Events
        • Staking Tombstone
        • Parameters
        • CLI
      • staking
        • State
        • State Transitions
        • Messages
        • Begin-Block
        • End-Block
        • Hooks
        • Events
        • Parameters
        • Client
      • upgrade
        • Concepts
        • State
        • Events
        • Client
        • Resources
      • vesting
        • Concepts
        • State
        • State Transitions
        • Transactions
        • AnteHandlers
        • Events
        • Clients
    • Module Accounts
    • IBC Channels
    • Ethermint API
  • Validators
    • Quick Start
    • Telemetry
    • Security
      • Tendermint KMS
      • Tendermint KMS + Ledger
      • Validator Security Checklist
      • Validator Backup
    • Snapshots, Archive Nodes
    • FAQ
  • Delegators
    • Staking Process
  • Tokenomics
  • Block Explorers
Powered by GitBook
On this page
  • CLI
  • gRPC
  1. Protocol Developers
  2. Modules
  3. feesplit

Clients

CLI

Find below a list of blockxd commands added with the x/feesplit module. You can obtain the full list by using the blockxd -h command. A CLI command can look like this:

blockxd query fees params

Queries

Command
Subcommand
Description

query feesplit

params

Get fees params

query feesplit

contract

Get the fee split for a given contract

query feesplit

contracts

Get all fee splits

query feesplit

deployer-contracts

Get all fee splits of a given deployer

query feesplit

withdrawer-contracts

Get all fee splits of a given withdrawer

Transactions

Command
Subcommand
Description

tx feesplit

register

Register a contract for receiving fees

tx feesplit

update

Update the withdraw address for a contract

tx feesplit

cancel

Remove the fee split for a contract

gRPC

Queries

Verb
Method
Description

gRPC

blockx.feesplit.v1.Query/Params

Get fees params

gRPC

blockx.feesplit.v1.Query/FeeSplit

Get the fee split for a given contract

gRPC

blockx.feesplit.v1.Query/FeeSplits

Get all fee splits

gRPC

blockx.feesplit.v1.Query/DeployerFeeSplits

Get all fee splits of a given deployer

gRPC

blockx.feesplit.v1.Query/WithdrawerFeeSplits

Get all fee splits of a given withdrawer

GET

/blockx/feesplit/v1/params

Get fees params

GET

/blockx/feesplit/v1/feesplits/{contract_address}

Get the fee split for a given contract

GET

/blockx/feesplit/v1/feesplits

Get all fee splits

GET

/blockx/feesplit/v1/feesplits/{deployer_address}

Get all fee splits of a given deployer

GET

/blockx/feesplit/v1/feesplits/{withdraw_address}

Get all fee splits of a given withdrawer

Transactions

Verb
Method
Description

gRPC

blockx.feesplit.v1.Msg/RegisterFeeSplit

Register a contract for receiving fees

gRPC

blockx.feesplit.v1.Msg/UpdateFeeSplit

Update the withdraw address for a contract

gRPC

blockx.feesplit.v1.Msg/CancelFeeSplit

Remove the fee split for a contract

POST

/blockx/feesplit/v1/tx/register_fee_split

Register a contract for receiving fees

POST

/blockx/feesplit/v1/tx/update_fee_split

Update the withdraw address for a contract

POST

/blockx/feesplit/v1/tx/cancel_fee_split

Remove the fee split for a contract

PreviousParametersNextFuture Improvements

Last updated 2 years ago