Anchor Earn SDK
Last updated
Last updated
Anchor Earn is a JavaScript SDK that specializes for integrations that are wishing to leverage the deposit functionality of Anchor.
Anchor Earn only covers the savings-related operations of Anchor. For a SDK with full functional coverage (e.g. minting bLuna, borrowing UST), Anchor.js is recommended.
Anchor Earn is designed with interchain access in mind. Further releases of Anchor Earn are to enable integrations for interchain deposits, opening up savings for applications outside of the Terra blockchain. With the use of EthAnchor, BscAnchor, SolAnchor, etc., Anchor Earn is to be further expanded to enable savings regardless of blockchain or the type of stablecoin.
A complete list of supported blockchains and stablecoins are outlined in the appendix section.
For those interested in reading the code, please refer to the Anchor Earn repository.
Anchor Earn requires NPM and Node.js 12 or above for its proper usage.
Anchor Earn is available as a package on NPM. Add @anchor-protocol/anchor-earn
to your JavaScript project's package.json
as dependencies using preferred package manager:
or
AnchorEarn({chain, network, privateKey?, MnemonicKey?, address?})
AnchorEarn
creates an instance of the AnchorEarn
object, used as the entry point to the Anchor Earn SDK.
A blockchain account is required when calling this function. Register the account's private key or mnemonics from which transactions will be signed and broadcasted. If you do not have a pre-created blockchain account, a new account can be created using the Account
instance.
While Anchor Earn by default handles transaction signing and broadcasting, these operations can be handed off to a callback function that connects with external key-signing solutions (e.g. Terra Station Extension, Ledger Hardware Wallet, Custodian APIs). For this case, the AnchorEarn
instance should be created by the pre-created account's address.
Method Parameters
Parameter / Type / Optionality / Description |
Blockchain to interact from. For Anchor Earn v1.0, only |
Network to interact in. |
Account private key. |
Account mnemonics. |
Account address. Required if transactions are to be signed / broadcasted remotely with the use of |
Example
Account(chain)
Creating an instance of the Account
object generates a new blockchain account.
Tokens for testnet environments (e.g. Bombay) can be acquired using faucets, outlined in the appendix section.
Method Parameters
Parameter / Type / Optionality / Description |
Blockchain to generate account on. |
Example
The Account
instance contains the information for the newly created account.
privateKey
and mnemonic
constitute as your access key to your account, including the control of your assets.
PLEASE RECORD AND STORE THEM IN A SAFE PLACE AND NEVER SHARE EXTERNALLY.
Attributes
Attribute / Type / Description |
Address of account. |
Public key of account. |
Private key of account. |
Mnemonics of account. |
MnemonicKey({mnemonic})
An account can also be generated using existing mnemonics. The MnemonicKey
object is borrowed from Terra.js, allowing integrators to access it without any dependencies on Terra.js.
Method Parameter
Parameter / Type / Optionality / Description |
Mnemonics of account. |
For compatibility across tokens with various decimals, Anchor Earn unifies all currency amounts to use the decimal representation. As an example, a value of 10.1 in the amount field will lead to the utilization of 10.1 currency tokens.
anchorEarn.deposit({currency, amount})
This method deposits the specified amount of stablecoins to Anchor.
Method Parameters
Parameter / Type / Optionality / Description |
Currency of stablecoin to deposit. |
Amount of stablecoins to deposit. |
Callback function provided by the integrator that creates, signs a transaction encoding the deposit request and returns the signed transaction to be broadcasted by Anchor Earn. Expects |
Callback function provided by the integrator that creates, signs and broadcasts a transaction that encodes the deposit request.
Expects the tx hash of the broadcasted transaction in |
Callback function that logs transaction requests. |
Returns
anchorEarn.deposit
will return a Promise
which resolves with either a OperationError
or TxOutput
object which implements the Output
interface.
Example
anchorEarn.withdraw({currency, amount})
This method withdraws the specified amount of stablecoins (or their aTerra counterpart) from Anchor.
Note that the actual amount of stablecoins withdrawn will be smaller due to transfer fees (tax) enforced by the Terra blockchain.
Method Parameters
Parameter / Type / Optionality / Description |
Currency of stablecoin to withdraw or their aTerra counterpart. |
Amount of stablecoins (or their aTerra counterpart) to withdraw. |
Callback function provided by the integrator that creates, signs a transaction encoding the withdraw request and returns the signed transaction to be broadcasted by Anchor Earn. Expects |
Callback function provided by the integrator that creates, signs and broadcasts a transaction that encodes the withdraw request. Expects the tx hash of the broadcasted transaction in |
Callback function that logs transaction requests. |
Returns
anchorEarn.withdraw
will return a Promise
which resolves with either a OperationError
or TxOutput
object which implements the Output
interface.
Example
anchorEarn.send({currency, recipient, amount})
Use anchorEarn.send
to send tokens (stablecoins or their aTerra counterpart) to a different account.
Method Parameters
Parameter / Type / Optionality / Description |
Currency of token (stablecoins or their aTerra counterpart) to send. |
Recipient address to receive sent tokens. |
Amount of tokens (stablecoins or their aTerra counterpart) to send. |
Callback function provided by the integrator that creates, signs a transaction encoding the send request and returns the signed transaction to be broadcasted by Anchor Earn. Expects |
Callback function provided by the integrator that creates, signs and broadcasts a transaction that encodes the send request. Expects the tx hash of the broadcasted transaction in |
Callback function that logs transaction requests. |
Returns
anchorEarn.send
will return a Promise
which resolves with either a OperationError
or TxOutput
object which implements the Output
interface.
Example
anchorEarn.balance({currencies})
This method retrieves balance information for the specified stablecoins.
Method Parameters
Parameters / Type / Optionality / Description |
List of currencies to retrieve balances. |
Returns
anchorEarn.balance
will return a Promise
which resolves with a BalanceOutput
object.
Example
anchorEarn.market({currencies})
This method retrieves market information for the specified stablecoins.
Method Parameters
Parameter / Type / Optionality / Description |
List of stablecoins to retrieve information about their markets. |
Returns
anchorEarn.market
will return a Promise
which resolves with a MarketOutput
object.
Example
The CHAINS
enumerated type specifies blockchains that are supported by Anchor Earn.
Anchor Earn currently supports the following blockchains:
Enum Member | Blockchain Name |
|
The NETWORKS
enumerated type specifies the network type to be used.
Anchor Earn supports mainnet and testnet networks with the below chain IDs:
Mainnet
Enum Member | Chain ID | Network Name |
|
| Columbus 5 |
Testnet
Enum Member | Chain ID | Network Name |
|
| Bombay |
Specifies stablecoin currency denominations.
Anchor Earn supports functionalities for the below stablecoin denominations:
Mainnet
Denomination | Code | Decimals | Contract Address |
UST |
| 6 | Native Token |
aUST |
| 6 |
Testnet
Denomination | Code | Decimals | Contract Address |
UST |
| 6 | Native Token |
aUST |
| 6 |
Represents an error that was returned by a request.
Attributes
Attribute / Type / Description |
Blockchain from which the request was made. |
Network from which the request was made. |
Request status.
Should display |
Request type. Can be either of:
|
Human-readable sentence describing the error. |
Represents information for a request made via Anchor Earn.
Attributes
Attribute / Type / Description |
Blockchain from which the request was made. |
Network from which the request was made. |
Request status. Can be either of:
|
Request type. Can be either of:
|
Currency of token (stablecoin or their aTerra counterpart). |
Amount of |
Transaction details. |
Amount of transaction fees spent by the requester. |
Amount of stablecoins that were deducted from the deposit / withdraw amount. Deduction can occur from three causes:
Applies only for withdrawals on Terra, and deposits / withdrawals to / from outside the Terra blockchain (e.g. Ethereum). |
Represents the progress status of a previously made request.
Enum Member | Description |
| Request is in flight |
| Request was successfully processed |
| Request failed |
Represents the type of a request.
Enum Member | Description |
| Request is a transaction that deposits stablecoins to Anchor |
| Request is a transaction that withdraws stablecoins from Anchor |
| Request is a transaction that sends tokens to a different account |
Represents the details of a transaction.
Attributes
Attribute / Type / Description |
Blockchain on which the transaction occurred on. |
Block height of the block that the transaction was included. |
Timestamp when the transaction was included in a block. |
Transaction hash of the transaction. |
The BalanceOutput
namespace represents your balance.
Attributes
Attribute / Type / Description |
|
Network that the account resides on. |
Block height when the information was queried from the blockchain. |
Timestamp when the information was queried from the blockchain. |
Address of the account that was used to retrieve its balance. |
Balance information. |
Total value of account's stablecoin balance valued in UST. |
Total value of account's deposit balance valued in UST. |
Represents balance information for a specific stablecoin.
Attributes
Attribute / Type / Description |
Currency of stablecoin. |
Account balance for this stablecoin. |
Account's deposit balance for this stablecoin. |
Represents overall market information.
Attributes
Attribute / Type / Description |
Blockchain that the market resides on. |
Network that the market resides on. |
Block height when the information was queried from the blockchain. |
Timestamp when the information was queried from the blockchain. |
Market information. |
Attributes
Attribute / Type / Description |
Currency of stablecoin. |
Amount of stablecoins that are available for withdrawal. Attempting to withdraw stablecoins in excess of this amount may lead to request failure. |
Annualized yield for deposits of this stablecoin. |
A utility function that allows remote signing of transaction (e.g. Ledger Hardware Wallet, Custodian APIs). When provided, Anchor Earn would act as a message/unsignedTx generator, and all transaction creation and signing should be handled within the function. customSigner
should throw an error if any step results in failures.
Generic Type Notation | Type | Description |
| Msg[ ] | Terra message array used to create an unsigned transaction |
| StdTx | Signed transaction |
A utility function that allows remote signing and broadcasting of transaction (e.g. Web Wallet Extensions). When provided, Anchor Earn would act as a message generator, and all transaction creation & signing & broadcasting should be handled within the function. customBroadcaster
should throw an error if any step results in failures.
Generic Type Notation | Type | Description |
| Msg[ ] | Terra message array used to create an unsigned transaction |
| string | Hash of broadcasted transaction |
A utility function that allows observation of the transaction progress. When provided, the function is called every time there is a state update to the transaction. Particularly useful in case of EthAnchor transactions (not supported in this version), as EthAnchor operations are asynchronous and there are multiple interim states.
Generic Type Notation | Type | Description |
| Transaction progress data | |
| void | nil |