UNPKG

test-triam-base-contract

Version:

Low level triam smart cotnract support library

45 lines (39 loc) 1.68 kB
import {default as xdr} from "../generated/stellar-xdr_generated"; import {Keypair} from "../keypair"; import isUndefined from 'lodash/isUndefined'; import {Hyper} from "js-xdr"; import BigNumber from 'bignumber.js'; const MAX_INT64 = '9223372036854775807'; /** * Returns an XDR ChangeTrustOp. A "change trust" operation adds, removes, or updates a * trust line for a given asset from the source account to another. The issuer being * trusted and the asset code are in the given Asset object. * @function * @alias Operation.changeTrust * @param {object} opts * @param {Asset} opts.asset - The asset for the trust line. * @param {string} [opts.limit] - The limit for the asset, defaults to max int64. * If the limit is set to "0" it deletes the trustline. * @param {string} [opts.source] - The source account (defaults to transaction source). * @returns {xdr.ChangeTrustOp} */ export const changeTrust = function(opts) { let attributes = {}; attributes.line = opts.asset.toXDRObject(); if (!isUndefined(opts.limit) && !this.isValidAmount(opts.limit, true)) { throw new TypeError(this.constructAmountRequirementsError('limit')); } if (opts.limit) { attributes.limit = this._toXDRAmount(opts.limit); } else { attributes.limit = Hyper.fromString(new BigNumber(MAX_INT64).toString()); } if (opts.source) { attributes.source = opts.source.masterKeypair; } let changeTrustOP = new xdr.ChangeTrustOp(attributes); let opAttributes = {}; opAttributes.body = xdr.OperationBody.changeTrust(changeTrustOP); this.setSourceAccount(opAttributes, opts); return new xdr.Operation(opAttributes); };