Justin Malčić
04954d0a1e
Add delegation tests ( #3316 )
...
* Add transfer test
* Add burn test
* Fix formatting
2022-07-21 14:51:45 +02:00
Jon Cinque
b709607271
token-cli: Bump version to 2.0.16 for release ( #3360 )
2022-07-20 20:15:03 +02:00
Alisamar Husain
b39efe8fb8
token-cli: Fix unexpected behavior when closing a wrapped SOL account with another wrapped SOL account as recipient ( #3278 )
...
* Check if recipient is a wrapped account
* Make clippy and fmt happy
* Avoided mutable, more functional clarity
* Add test for closing wrapped sol account
* wrap the default account
Co-authored-by: Jon Cinque <jon.cinque@gmail.com>
* Fix formatting and failing tests
Co-authored-by: Jon Cinque <jon.cinque@gmail.com>
2022-07-17 16:50:39 +02:00
Jon Cinque
5874a14584
token-cli: Move cmd test into a separate file ( #3306 )
2022-07-01 19:41:27 -04:00
Jon Cinque
c1ee6a58be
Update Solana crates to 1.10.29 ( #3303 )
2022-07-01 16:51:01 -04:00
samkim-crypto
0f316fb357
bump solana to v1.10.26 ( #3274 )
2022-06-20 09:55:49 +09:00
Athar Mohammad
351cd60a5e
spl-token: Enums for Cli command names ( #2598 ) ( #3236 )
...
* Added Enums which can be turned into strings
for command names.
2022-06-17 16:56:03 -04:00
dboures
3e9104736a
token-cli: produce error if invalid --config option ( #3166 )
...
* token-cli: produce error if invalid --config option
* token-cli: add test for invalid --config
2022-06-08 14:48:55 +02:00
samkim-crypto
424c900345
bump solana to v1.10.19 ( #3195 )
...
* bump solana to v1.10.19
* update solana-version.sh
2022-05-25 08:40:30 +09:00
Dmitri Makarov
f1c1d440e9
Bump solana to v1.10.15 ( #3176 )
2022-05-17 11:27:30 -07:00
Tyera Eulberg
b3fe5b6d5d
Bump token-2022 ( #3113 )
...
* Bump token-2022
* Bump solana dependencies
2022-04-26 12:15:26 -06:00
Harsh Ghodkar
f7d4ebecc6
added a flag to check if the recipient address is correct ( #3085 )
...
* added a flag to check if the recipient address is correct
* small fix
* Made the changes of adding the check to a suggested block
* updating from base
* was able to clear merge conflicts
* added a couple tests
* better names for tests
* done with fixes
* cargo fmt
2022-04-21 21:53:30 +02:00
Jon Cinque
bbde6d8703
token-cli: Add tests for all cases from docs ( #3070 )
...
* token-cli: Add tests for all cases from docs
* Add TestValidator and build.rs for programs
* Fix solana-test-validator version
* Add solana-test-validator to patch script
2022-04-15 21:51:16 +02:00
Jon Cinque
1d1c2b178b
Upgrade crates to 1.10.8 ( #3076 )
2022-04-11 22:25:27 +02:00
Jon Cinque
513c1143a2
token-cli-bench: Remove RPC utils in favor of Tpu Client ( #3046 )
2022-04-01 13:41:33 +02:00
Tyera Eulberg
f4c5fdcfcf
Bump solana to v1.9.9 ( #2902 )
2022-02-23 16:20:55 -07:00
Michael Vines
0df75ab5e8
Freezing -> Thawing
2022-02-04 09:55:36 -08:00
Michael Vines
6d62ea6cc7
Drop _program_id
2022-01-24 17:41:47 -08:00
Michael Vines
8e559ce69c
Add --program-id argument
2022-01-24 17:41:47 -08:00
Tyera Eulberg
83c3ffad25
Bump solana crates to v1.9.5 ( #2780 )
...
* Bump solana crates to v1.9.5
* Update sol_set_return_data type signature and un-ignore test
2022-01-21 22:52:10 -07:00
Jon Cinque
78e7a9538e
associated-token-account: Bump dependent token version to 3.3 ( #2766 )
...
* associated-token-account: Bump dependent token version to 3.3
* Fix uses of deprecated instruction
2022-01-21 11:01:06 +01:00
Jon Cinque
81f50127f1
token: Bump version to 3.3.0 ( #2765 )
2022-01-21 01:47:02 +01:00
Michael Vines
9aa859c929
Display RPC transport stats
2022-01-10 11:54:22 -08:00
Jon Cinque
6ee008d256
Update SDK to 1.9.2, fix warnings ( #2674 )
...
* Update SDK to 1.9.2, fix warnings
* Upgrade honggfuzz
* Use `get_latest_blockhash` correctly
2021-12-28 23:02:47 -05:00
Paul
7393f1de43
spl-token: provide more useful output when using create-token with the output option and small redesign of token cli architecture ( #2593 )
...
* spl-token: WIP
* Remove and_then, move tx handling in separate function- output handling still missing
* spl-token: add basic output handling for all calls, add detailed output to create-token
* spl-token: remove changes in bench that are not strictly necessary to remove # of files touched in this PR
* [spl-token] cli: HandleTxReturn is now TransactionReturnData
* [spl-token] cli: Make commands return output String that is printed in fn main()
* [spl-token] cli: remove old todos
* [spl-token] cli: only use no_wait arg in command_transfer and use constant for "create-token"
2021-11-24 12:08:46 -07:00
Ikko Ashimine
707382ee96
Fix typo in main.rs ( #2569 )
...
auxillary -> auxiliary
2021-11-10 11:18:07 -07:00
MarkSackerberg
81c90f5c73
Allow GC to close empty associated accounts ( #2554 )
...
* Allow GC to close empty associated accounts
Empty associated accounts will only be closed in case the new flag del_associated_accounts is set. Otherwise behaviour is as before.
Useage:
spl-token gc --del_associated_accounts
* use kebab-case
Co-authored-by: Jon Cinque <jon.cinque@gmail.com>
* align coding style
Thank you jon!
* Add sanity check
* correcting amount check before closing
* formatting correcly
using cargo fmt
* changing sanity check to assert!
Co-authored-by: Sack <none>
Co-authored-by: Jon Cinque <jon.cinque@gmail.com>
Co-authored-by: Mark Sackerberg <Contact@Discord>
2021-11-04 22:49:23 +01:00
Michael Vines
9acb082dc3
Upgrade to Solana v1.8.1
2021-10-20 22:52:19 -07:00
Michael Vines
12732f8d5a
Upgrade to Solana 1.8.0
2021-10-12 09:40:06 -07:00
Ryo Onodera
2221e5df74
token-cli: Bump version to 2.0.15
2021-09-28 22:03:41 +09:00
Ryo Onodera
462f1e0708
Really plumb dump_transaction_message ( #2448 )
2021-09-24 12:05:26 +09:00
Michael Vines
9f0f30a21d
Always check transaction statuses before resending
2021-09-19 21:44:09 -07:00
Michael Vines
7d1c0c48fb
Use status.satisfies_commitment
2021-09-16 19:35:30 -07:00
dependabot[bot]
a036953d12
build(deps): bump serde_json from 1.0.67 to 1.0.68 ( #2416 )
...
Bumps [serde_json](https://github.com/serde-rs/json ) from 1.0.67 to 1.0.68.
- [Release notes](https://github.com/serde-rs/json/releases )
- [Commits](https://github.com/serde-rs/json/compare/v1.0.67...v1.0.68 )
---
updated-dependencies:
- dependency-name: serde_json
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-09-15 11:17:56 +00:00
Michael Vines
2fa7bb0ef3
Adjust send_and_confirm_messages_with_spinner() to work better with public mainnet RPC
2021-09-08 12:08:27 -05:00
Michael Vines
35e4c1ab49
Slow down retransmission of transactions
2021-09-08 09:48:46 -05:00
Michael Vines
054e4f71c5
Fix issues building against solana 1.8
2021-09-05 17:06:27 -07:00
Michael Vines
902ca60aa3
Groom send_and_confirm_messages_with_spinner
2021-09-05 17:06:27 -07:00
Michael Vines
0737892ba6
Add bench subcommand
2021-09-04 22:31:11 -07:00
Michael Vines
ca685784ee
Add memo support to transfer and burn commands
2021-08-31 18:08:46 -07:00
dependabot[bot]
3fcfb999d1
build(deps): bump serde from 1.0.129 to 1.0.130 ( #2361 )
...
Bumps [serde](https://github.com/serde-rs/serde ) from 1.0.129 to 1.0.130.
- [Release notes](https://github.com/serde-rs/serde/releases )
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.129...v1.0.130 )
---
updated-dependencies:
- dependency-name: serde
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-08-31 11:13:17 +00:00
Michael Vines
4406265d4a
Upgrade to Solana 1.7.11
2021-08-30 12:41:08 -07:00
dependabot[bot]
7ef3509f51
build(deps): bump serde_json from 1.0.66 to 1.0.67 ( #2351 )
...
Bumps [serde_json](https://github.com/serde-rs/json ) from 1.0.66 to 1.0.67.
- [Release notes](https://github.com/serde-rs/json/releases )
- [Commits](https://github.com/serde-rs/json/compare/v1.0.66...v1.0.67 )
---
updated-dependencies:
- dependency-name: serde_json
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-08-30 11:32:19 +00:00
Jon Cinque
0db32380a8
token-cli: Add `--use-unchecked-instruction` flag ( #2328 )
...
* token-cli: Add `--use-legacy-unchecked-instruction` flag
* use-legacy-unchecked-instruction -> use-unchecked-instruction
2021-08-26 20:38:10 +02:00
dependabot[bot]
1f97833cdd
build(deps): bump serde from 1.0.128 to 1.0.129 ( #2322 )
...
Bumps [serde](https://github.com/serde-rs/serde ) from 1.0.128 to 1.0.129.
- [Release notes](https://github.com/serde-rs/serde/releases )
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.128...v1.0.129 )
---
updated-dependencies:
- dependency-name: serde
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-08-24 11:17:42 +00:00
dependabot[bot]
4b7898cb2b
build(deps): bump serde from 1.0.127 to 1.0.128 ( #2318 )
...
Bumps [serde](https://github.com/serde-rs/serde ) from 1.0.127 to 1.0.128.
- [Release notes](https://github.com/serde-rs/serde/releases )
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.127...v1.0.128 )
---
updated-dependencies:
- dependency-name: serde
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-08-23 11:29:51 +00:00
dependabot[bot]
e6a7c0080b
build(deps): bump serde from 1.0.126 to 1.0.127 ( #2200 )
...
Bumps [serde](https://github.com/serde-rs/serde ) from 1.0.126 to 1.0.127.
- [Release notes](https://github.com/serde-rs/serde/releases )
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.126...v1.0.127 )
---
updated-dependencies:
- dependency-name: serde
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-08-02 11:15:36 +00:00
dependabot[bot]
4406ffc5b9
build(deps): bump serde_json from 1.0.65 to 1.0.66 ( #2187 )
...
Bumps [serde_json](https://github.com/serde-rs/json ) from 1.0.65 to 1.0.66.
- [Release notes](https://github.com/serde-rs/json/releases )
- [Commits](https://github.com/serde-rs/json/compare/v1.0.65...v1.0.66 )
---
updated-dependencies:
- dependency-name: serde_json
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-07-30 11:13:27 +00:00
dependabot[bot]
6de07fe2c4
build(deps): bump serde_json from 1.0.64 to 1.0.65 ( #2160 )
...
Bumps [serde_json](https://github.com/serde-rs/json ) from 1.0.64 to 1.0.65.
- [Release notes](https://github.com/serde-rs/json/releases )
- [Commits](https://github.com/serde-rs/json/compare/v1.0.64...v1.0.65 )
---
updated-dependencies:
- dependency-name: serde_json
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-07-29 11:47:23 +00:00
Tyera Eulberg
30fccebdc6
Bump solana crates ( #2139 )
2021-07-23 16:47:06 +00:00
Trent Nelson
e4145e3341
token-cli: fix resolving multisig authorities
2021-07-23 01:45:35 -06:00
Tyera Eulberg
5e86aa6142
Bump spl-token-cli ( #2131 )
2021-07-23 03:20:16 +00:00
Tyera Eulberg
c87bb29f48
token-cli: support json output ( #2130 )
...
* Add output_format to config
* Add --output global parameter
* Add json output handling for tx commands
* Impl OutputFormat handling for easy get requests
* Remove redundant struct
* Impl OutputFormat handling for accounts command
* Remove unused config field
* Prevent gc --output json for now
2021-07-23 01:44:06 +00:00
Jon Cinque
ddc029e14d
token: Bump to 3.2.0 everywhere ( #2116 )
2021-07-20 23:40:32 +02:00
Jon Cinque
aef1e239b3
token: Add SyncNative instruction (program, CLI, JS) ( #2091 )
...
* Add SyncNative to program
* Add CLI support
* Add JS bindings
* Fix syncNative test to not run for existing token program
* Combine checks
2021-07-19 21:50:42 +02:00
Trent Nelson
7d00fe08a4
token-cli: Bump version to 2.0.13
2021-07-13 00:37:26 -06:00
Trent Nelson
7b5afeac8d
token-cli: Dedupe 'transfer' help message --owner value name
2021-07-06 20:37:55 +00:00
Tyera Eulberg
0acc8c8bad
Bump solana and borsh crates ( #2015 )
2021-07-02 16:53:41 +00:00
Jon Cinque
21f8af34e7
Update all solana dependencies to 1.7.3, fix issues ( #1958 )
...
* Update all dependencies to 1.7.3, fix issues
* Remove esm from mocha
* Fix missed token test
* Also update rust version
* token-swap: update tolerance on sim test
* Run `cargo clippy --fix` for needless_borrow errors
* Rerun cargo fmt
2021-06-25 00:39:08 +02:00
Tyera Eulberg
c2f3ed530e
Bump spl-token-cli
2021-06-14 16:02:27 -06:00
Tyera Eulberg
e28af24443
Bump solana version
2021-06-14 16:02:27 -06:00
Justin Starry
3cf9f0d0f9
spl-token-cli: Remove global owner argument ( #1870 )
2021-06-10 11:52:39 -07:00
drbh
41568014eb
implement the ability to leave a memo on token creation
2021-05-11 20:21:08 -07:00
Trent Nelson
1f36ca301b
Bump solana crates to v1.6.7
2021-05-05 04:39:49 +00:00
Michael Vines
1e47030549
Update SPL to Solana v1.6.6
2021-04-23 13:39:51 -07:00
Trent Nelson
9ad4168253
token-cli: bump version to 2.0.11
2021-04-23 01:53:28 -06:00
Trent Nelson
dfc5cc5a23
token-cli: Fix ATA creation in offline mode
2021-04-23 07:42:45 +00:00
Trent Nelson
96901b1299
token-cli: sign_only gates for `transfer`
2021-04-14 12:13:52 -06:00
Trent Nelson
b8a773fddd
token-cli: sign_only gates for `authorize`
2021-04-14 12:13:52 -06:00
Trent Nelson
4374d8dee4
token-cli: Fix transfer to multisig ATAs
2021-04-14 12:13:52 -06:00
Trent Nelson
6a52ba7d92
token-cli: sign_only gates for `create-account`
2021-04-14 12:13:52 -06:00
Trent Nelson
84f2f33f49
spl-token-cli: Use CLI config wallet for nonce authority fallback
2021-04-01 01:41:24 -06:00
Trent Nelson
25a6a6e923
spl-token-cli: Sort multisigners
2021-04-01 01:41:13 -06:00
Trent Nelson
8b989d562b
spl-token-cli: Simplify owner resolution
2021-03-31 23:52:16 -06:00
Tyera Eulberg
936ecef809
Bump spl-token-cli to 2.0.10 ( #1540 )
2021-03-30 17:22:17 -06:00
Tyera Eulberg
f2de73da8e
spl-token-cli: support ATA in close, balance, and account-info ( #1537 )
...
* Use ATA by default in close command
* Use ATA by default in balance/account-info queries
* Add Aux tag and gc messaging to spl-token account-info
* Recommend 'token' only if no args provided
2021-03-30 22:31:54 +00:00
Michael Vines
448be67cfa
Update to Solana 1.6.2
2021-03-30 09:38:04 -07:00
Ryo Onodera
0500f5fb02
Add spl-token transfer --no-wait ( #1525 )
2021-03-30 16:25:21 +09:00
Tyera Eulberg
75e122061e
Accounts: check mint if provided, use helper ( #1503 )
2021-03-24 00:06:39 +00:00
Tyera Eulberg
a3e8af2068
spl-token-cli: use ATA by default in wrap/unwrap commands ( #1492 )
...
* Wrap to ATA by default
* Unwrap ATA by default
* Review comments
2021-03-23 15:48:27 -06:00
Tyera Eulberg
80819fa05a
Transfer from ATA by default ( #1487 )
...
* Transfer from ATA by default
* Update token/cli/src/main.rs
2021-03-23 04:12:29 +00:00
Tyera Eulberg
603a94327f
Add spl-token address command ( #1484 )
2021-03-22 23:58:09 +00:00
Tyera Eulberg
04fc247b2e
Reorder App subcommands ( #1485 )
2021-03-22 22:47:25 +00:00
Michael Vines
bb05462d59
Rename --allow-empty-recipient to --allow-unfunded-recipient
2021-03-22 13:45:18 -07:00
Michael Vines
662f38f939
Bump Solana version to 1.6.1
2021-03-18 04:07:16 +00:00
Michael Vines
58807c5f8b
Back out clippy::manual_map for now
2021-03-16 22:22:59 -07:00
Michael Vines
af5fdb3146
Bump Rust version to 1.50.0
2021-03-16 22:22:59 -07:00
Tyera Eulberg
82a385b7c3
Bump spl-token-cli for new release ( #1463 )
2021-03-16 18:24:04 -06:00
Justin Starry
4107c17a3b
Bump token-cli to v2.0.8 ( #1458 )
2021-03-16 17:44:36 -06:00
Michael Vines
723aacadb7
Pin Solana versions used by spl-token-cli
2021-03-16 15:07:56 -07:00
Tyera Eulberg
d65d2eac41
Token cli: Improve authorize command ( #1445 )
...
* Return clear error message if auth type is incompatible with account
* Report real current authority
* Prevent reauth of owner's ATA
* Fix typo, messaging improvements
Co-authored-by: Trent Nelson <trent.a.b.nelson@gmail.com>
Co-authored-by: Trent Nelson <trent.a.b.nelson@gmail.com>
2021-03-16 13:59:21 -06:00
Justin Starry
5aa60dd892
token-cli: Don't sign with owner when creating an associated token account ( #1449 )
2021-03-16 15:59:38 +08:00
Tyera Eulberg
5aa0341478
Token cli: spl-token accounts improvements ( #1440 )
...
* Swap token/account to prep for display changes
* Refactor accounts parsing for deterministic order and to batch by mint
* Add Aux tags and gc alert
* Hide account addresses for non-verbose returns
* Review nits
* Set balance display len dynamically
* Bump solana version to reduce Account parse failures
* Fix aux width
2021-03-12 19:34:14 -07:00
Tyera Eulberg
123f0daffe
Allow pubkey owner for accounts subcommand ( #1439 )
2021-03-11 15:40:47 -07:00
Tyera Eulberg
7a2d17b57f
Enable short arg, monikers ( #1433 )
2021-03-11 06:44:00 +00:00
Tyera Eulberg
4f50c512f9
Bump token-cli to v2.0.7 ( #1366 )
2021-03-02 12:31:58 -07:00
Jon Cinque
9c12b50703
Update solana-program to 1.5.11 ( #1362 )
...
* Update solana-program to 1.5.11
* Update all programs
2021-03-02 19:19:50 +01:00
Tyera Eulberg
f0b70989c0
Use forward-compatible apis ( #1353 )
2021-03-02 09:56:34 -07:00
Michael Vines
a782f3e52f
Add --allow-empty-recipient to `transfer` command
2021-02-22 11:50:34 -08:00
dependabot[bot]
1e5b376df6
build(deps): bump serde_json from 1.0.61 to 1.0.62 ( #1265 )
...
Bumps [serde_json](https://github.com/serde-rs/json ) from 1.0.61 to 1.0.62.
- [Release notes](https://github.com/serde-rs/json/releases )
- [Commits](https://github.com/serde-rs/json/compare/v1.0.61...v1.0.62 )
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-02-18 02:07:29 +00:00
dependabot[bot]
b476c962ce
build(deps): bump solana-cli-config from 1.5.6 to 1.5.8 ( #1260 )
...
Bumps [solana-cli-config](https://github.com/solana-labs/solana ) from 1.5.6 to 1.5.8.
- [Release notes](https://github.com/solana-labs/solana/releases )
- [Changelog](https://github.com/solana-labs/solana/blob/master/RELEASE.md )
- [Commits](https://github.com/solana-labs/solana/compare/v1.5.6...v1.5.8 )
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-02-17 23:23:27 +00:00
Trent Nelson
2316b6092e
chore: token - bump version to 3.1.0
2021-02-11 16:30:03 -07:00
Trent Nelson
188c03e9a1
chore: bump solana crates to 1.5.6
2021-02-11 16:30:03 -07:00
dependabot[bot]
c1d49de8b2
build(deps): bump solana-logger from 1.5.1 to 1.5.3 ( #1066 )
...
Bumps [solana-logger](https://github.com/solana-labs/solana ) from 1.5.1 to 1.5.3.
- [Release notes](https://github.com/solana-labs/solana/releases )
- [Changelog](https://github.com/solana-labs/solana/blob/master/RELEASE.md )
- [Commits](https://github.com/solana-labs/solana/compare/v1.5.1...v1.5.3 )
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-01-14 12:36:43 +00:00
dependabot[bot]
7e8c36ef78
build(deps): bump solana-cli-config from 1.5.1 to 1.5.2 ( #1051 )
...
Bumps [solana-cli-config](https://github.com/solana-labs/solana ) from 1.5.1 to 1.5.2.
- [Release notes](https://github.com/solana-labs/solana/releases )
- [Changelog](https://github.com/solana-labs/solana/blob/master/RELEASE.md )
- [Commits](https://github.com/solana-labs/solana/compare/v1.5.1...v1.5.2 )
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-01-11 01:32:56 +00:00
dependabot[bot]
c1de655e4f
Bump console from 0.13.0 to 0.14.0 ( #1005 )
...
Bumps [console](https://github.com/mitsuhiko/console ) from 0.13.0 to 0.14.0.
- [Release notes](https://github.com/mitsuhiko/console/releases )
- [Changelog](https://github.com/mitsuhiko/console/blob/master/CHANGELOG.md )
- [Commits](https://github.com/mitsuhiko/console/compare/0.13.0...0.14.0 )
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-01-11 08:55:38 +08:00
dependabot[bot]
b08ed21332
build(deps): bump solana-cli-config from 1.5.0 to 1.5.1 ( #1023 )
...
Bumps [solana-cli-config](https://github.com/solana-labs/solana ) from 1.5.0 to 1.5.1.
- [Release notes](https://github.com/solana-labs/solana/releases )
- [Changelog](https://github.com/solana-labs/solana/blob/master/RELEASE.md )
- [Commits](https://github.com/solana-labs/solana/compare/v1.5.0...v1.5.1 )
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-01-04 12:39:08 +00:00
dependabot[bot]
c64d43180a
Bump serde_json from 1.0.59 to 1.0.61 ( #983 )
...
Bumps [serde_json](https://github.com/serde-rs/json ) from 1.0.59 to 1.0.61.
- [Release notes](https://github.com/serde-rs/json/releases )
- [Commits](https://github.com/serde-rs/json/compare/v1.0.59...v1.0.61 )
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-01-04 01:33:47 +00:00
Michael Vines
8ae34d2137
Update to Solana 1.5.0
2020-12-17 21:24:30 -08:00
Trent Nelson
7e5ef20c44
Bump token-cli to v2.0.6
2020-12-16 22:45:52 +00:00
Trent Nelson
603e3517f8
Bump {ata,memo,token-{program,cli}} to solana v1.4.17
...
To pick up cargo audit fixes for monorepo
2020-12-16 22:45:52 +00:00
Michael Vines
158fa1dea6
Upgrade to Solana v1.4.14
2020-12-03 05:39:55 +00:00
Michael Vines
b51acb2577
Bump SPL Token CLI version to 2.0.5
2020-11-20 09:03:55 -08:00
Michael Vines
7e3115fb25
Avoid RpcClient::get_account() in some cases
2020-11-19 10:28:18 -08:00
Michael Vines
222ec663df
Use RpcClient::new_with_commitment()
2020-11-18 04:37:30 +00:00
Michael Vines
c6a4ac9a82
Bump solana version to v1.4.9
2020-11-17 20:02:17 -08:00
Michael Vines
0bafe9891d
spl-token transfer now supports ALL keyword
2020-11-18 02:06:46 +00:00
Michael Vines
43d808c5fd
Clean up `spl-token accounts <MINT>` output
2020-11-18 02:05:52 +00:00
Tyera Eulberg
6ee1f09311
Use config commitment for balance checks ( #842 )
2020-11-14 01:24:13 -07:00
Michael Vines
f4af9054a2
Update to Solana 1.4.8
2020-11-14 02:35:20 +00:00
Michael Vines
5030a87021
Upgrade to Solana 1.4.7
2020-11-12 11:05:20 -08:00
dependabot[bot]
7249b4fa1e
Bump solana-cli-config from 1.4.5 to 1.4.6 ( #820 )
...
Bumps [solana-cli-config](https://github.com/solana-labs/solana ) from 1.4.5 to 1.4.6.
- [Release notes](https://github.com/solana-labs/solana/releases )
- [Changelog](https://github.com/solana-labs/solana/blob/master/RELEASE.md )
- [Commits](https://github.com/solana-labs/solana/compare/v1.4.5...v1.4.6 )
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-11-10 12:31:19 +00:00
Michael Vines
238eabc1d0
Bump solana version to v1.4.5
2020-11-06 21:29:04 -08:00
Michael Vines
645a9874d3
Output tweaks
2020-11-05 13:42:48 -08:00
Michael Vines
8ec81b6405
Bump spl-token cli version
2020-11-04 20:21:20 +00:00
Michael Vines
89de77aad8
Bump spl-token to v3.0.0
2020-11-04 18:58:37 +00:00
Michael Vines
8ea9b28edf
Add associated token account support
2020-11-04 09:13:21 -08:00
Michael Vines
341149d0e9
Back to no-entrypoint feature name
2020-11-03 10:34:43 -08:00
Michael Vines
9f4e6d8beb
Update to solana v1.4.4
2020-11-01 20:48:15 -08:00
Tyera Eulberg
c312a0576a
Clippy suggestions ( #765 )
2020-10-31 19:10:33 -06:00
Trent Nelson
de23dbc8a0
token-cli: Don't panic on signing errors
2020-10-30 15:57:20 -06:00
Trent Nelson
d02975bb0b
token-cli: Plumb multisig support for supporting subcommands
2020-10-30 15:57:20 -06:00
Trent Nelson
23e2b0bed3
token-cli: Add `multisig-info` subcommand
2020-10-30 15:57:20 -06:00
Trent Nelson
f40236928d
token-cli: Add `create-multisig` subcommand
2020-10-30 15:57:20 -06:00
Michael Vines
9c7c12c361
Correct help text
2020-10-28 17:43:57 -07:00
Trent Nelson
b775896c8c
token-cli: Support offline signing
2020-10-27 01:24:03 +00:00
Trent Nelson
3deb46f35a
token-cli: Support durable nonces
2020-10-27 01:24:03 +00:00
Trent Nelson
5193078568
token-cli: Use subcommand arg matches for config
2020-10-27 01:24:03 +00:00
Trent Nelson
dcc28d311d
token-cli: Send transactions with config
2020-10-27 01:24:03 +00:00
Trent Nelson
6096e7b554
token-cli: Use clap-utils fee payer arg
2020-10-27 01:24:03 +00:00
Michael Vines
80e29ef6b9
Port SPL to solana-program and `cargo build-bpf`
2020-10-24 19:21:38 -07:00
dependabot[bot]
14d102b86a
Bump solana-cli-config from 1.4.1 to 1.4.2 ( #704 )
...
Bumps [solana-cli-config](https://github.com/solana-labs/solana ) from 1.4.1 to 1.4.2.
- [Release notes](https://github.com/solana-labs/solana/releases )
- [Changelog](https://github.com/solana-labs/solana/blob/master/RELEASE.md )
- [Commits](https://github.com/solana-labs/solana/compare/v1.4.1...v1.4.2 )
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-10-23 13:29:32 +00:00
dependabot[bot]
1f0bf3bacb
Bump solana-logger from 1.4.1 to 1.4.2 ( #705 )
...
Bumps [solana-logger](https://github.com/solana-labs/solana ) from 1.4.1 to 1.4.2.
- [Release notes](https://github.com/solana-labs/solana/releases )
- [Changelog](https://github.com/solana-labs/solana/blob/master/RELEASE.md )
- [Commits](https://github.com/solana-labs/solana/compare/v1.4.1...v1.4.2 )
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-10-23 12:13:37 +00:00
dependabot[bot]
1af2292021
Bump console from 0.12.0 to 0.13.0 ( #659 )
...
Bumps [console](https://github.com/mitsuhiko/console ) from 0.12.0 to 0.13.0.
- [Release notes](https://github.com/mitsuhiko/console/releases )
- [Changelog](https://github.com/mitsuhiko/console/blob/master/CHANGELOG.md )
- [Commits](https://github.com/mitsuhiko/console/compare/v0.12.0...v0.13.0 )
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-10-19 12:18:56 +00:00
Greg Fitzgerald
2ec3b3fa4f
Upgrade solana-sdk in themis ( #636 )
...
* Upgrade solana-sdk in themis
* Fix build
* Bump Token CLI dependencies
* Remove Cargo.lock files
* Fix BN build
* Upgrade BN client too
2020-10-16 16:28:07 -06:00
dependabot[bot]
edc03f23c1
Bump solana-cli-config from 1.4.0 to 1.4.1 ( #644 )
...
Bumps [solana-cli-config](https://github.com/solana-labs/solana ) from 1.4.0 to 1.4.1.
- [Release notes](https://github.com/solana-labs/solana/releases )
- [Changelog](https://github.com/solana-labs/solana/blob/master/RELEASE.md )
- [Commits](https://github.com/solana-labs/solana/compare/v1.4.0...v1.4.1 )
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-10-16 13:37:30 +00:00
dependabot[bot]
86c0182ec4
Bump solana-logger from 1.4.0 to 1.4.1 ( #645 )
...
Bumps [solana-logger](https://github.com/solana-labs/solana ) from 1.4.0 to 1.4.1.
- [Release notes](https://github.com/solana-labs/solana/releases )
- [Changelog](https://github.com/solana-labs/solana/blob/master/RELEASE.md )
- [Commits](https://github.com/solana-labs/solana/compare/v1.4.0...v1.4.1 )
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-10-16 12:20:02 +00:00
Tyera Eulberg
6718d42e34
Bump memo and token versions ( #627 )
2020-10-15 12:20:23 -06:00
Michael Vines
9324154df2
Bump version
2020-10-14 08:41:52 -07:00
dependabot[bot]
3d01a16746
Bump solana-logger from 1.3.15 to 1.4.0 ( #621 )
...
Bumps [solana-logger](https://github.com/solana-labs/solana ) from 1.3.15 to 1.4.0.
- [Release notes](https://github.com/solana-labs/solana/releases )
- [Changelog](https://github.com/solana-labs/solana/blob/master/RELEASE.md )
- [Commits](https://github.com/solana-labs/solana/compare/v1.3.15...v1.4.0 )
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-10-14 13:59:38 +00:00