Skip to content

Releases: chain/sequence-sdk-ruby

Sequence Ruby SDK v1.3

02 Mar 00:56

Choose a tag to compare

For full details on the 1.3 release and how to migrate your code,
visit the Sequence changelog.

  • Added Token. More info
  • Added token_tags on Transaction builder's issue/transfer actions.
  • Added filter on Transaction builder's transfer/retire actions.
  • Updated pagination interfaces:
    .[list|sum].page(size: size) to retrieve one page.
    .[list|sum].page(cursor: cursor) to retrieve another page.
    .[list|sum].all to iterate over all items.
    page_size has been deprecated; you can now use .page(size: size).
  • Querying balances has been deprecated; you can now use tokens.sum to
    query balances in an account.
  • Querying contracts has been deprecated; you can now use tokens.list to
    list tokens in an account.

Sequence Ruby SDK v1.2.0

16 Feb 20:47

Choose a tag to compare

For full details on the 1.2 release and how to migrate your code,
visit the Sequence changelog.

  • Asset has been renamed to Flavor; all references to assets have been
    deprecated.
  • The code field on API errors has been deprecated; the new field is
    seq_code, containing SEQXXX error codes.
  • The source_account_tags, destination_account_tags, and asset_tags on
    action objects have been deprecated; All tags on actions are now available
    within a new Action#snapshot object.

Sequence Ruby SDK v1.1.0

16 Feb 20:48

Choose a tag to compare

For full details on the 1.1 release and how to migrate your code,
visit the Sequence changelog.

  • Added support for setting a user-provided id on key and account objects.
  • The alias field on key and account objects has been deprecated.
  • The ledger field when creating an API client has been deprecated; the new
    field is named ledger_name.
  • Added full support for listing and summing actions.