Custodians & Centralized Exchanges (CEXs)
Last updated
Last updated
1Money's APIs enable seamless integration with automation, security, and compliance workflows common across custodian and centralized exchanges.
Key features include:
Out-of-the-box support for , , and .
Simplified management of accounts, thanks to the 1Money protocol’s gasless transactions, low latency, and high throughput—even during periods of high market volatility.
Compatibility with Ethereum’s elliptic curve cryptography and address format, facilitating integration with MPC (Multi-Party Computation) signing processes.
The following provides How-To's on common functions for Custodians and Exchanges.
The 1Money Network uses the same elliptic curve signature scheme and account addresses as Ethereum, ensuring a familiar user experience.
Based on the Ethereum standard, a private key is made up of 64 hex characters and can be encrypted with a password.
Example:
The public key is generated from the private key using the Elliptic Curve Digital Signature Algorithm. You get a public address for your account by taking the last 20 bytes of the Keccak-256 hash of the public key and adding 0x
to the beginning.
Example:
Account public/private keypairs from Ethereum can be reused seamlessly on the 1Money Network.
New Accounts can be generated using any wallet within Ethereum and simply reused on 1Money.
Wallet integrations both with popular existing wallets and native solutions will be coming in the near future.
Tokens on the 1Money Network share the following attributes:
Token value can support 0–18 decimals.
Each token has a master_authority
, designating the original issuer.
Example result:
Example result:
Balance changes can be queried by:
Compare the network's checkpoint number to your local checkpoint number
Input the latest checkpoint number ( number=
) and set &full=true
to pull the transaction data
Example result:
To transfer assets:
Submit a signed transaction to the network.
Upon submission, a transaction hash is returned.
Transactions are finalized instantly—no need to wait for checkpoint confirmations.
Get started immediately by connecting directly to 1Money Network's publicly available .
Use the API to pull specific metadata on a token.
Use the API with your account address
and token address
as inputs to fetch balances.
Learn more in the section.
Getting the to find the network's latest checkpoint number
If they match, use the to pull all the transaction data from that checkpoint
Use the to prepare the transaction with a private key signature
Use to check on the status of your transaction.