Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ target_link_libraries(sequence-demo PRIVATE sequence_c_sdk)

# ---- CLI ----

add_executable(sequence-cli cli.c)
target_link_libraries(sequence-cli PRIVATE sequence_c_sdk)
add_executable(sequence-wallet cli.c)
target_link_libraries(sequence-wallet PRIVATE sequence_c_sdk)

# ---- Install ----

Expand All @@ -96,7 +96,7 @@ install(TARGETS sequence_c_sdk
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR})

install(TARGETS sequence-demo sequence-cli
install(TARGETS sequence-demo sequence-wallet
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})

install(DIRECTORY lib/
Expand Down
2 changes: 1 addition & 1 deletion Formula/wallet.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ def install

test do
# Basic smoke test
assert_match "Usage", shell_output("#{bin}/sequence --help")
assert_match "Usage", shell_output("#{bin}/sequence-wallet --help")
end
end
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,28 +45,28 @@ cmake --build build

```shell
# Init
./build/sequence-cli init --access_key AQAAAAAAAAK2JvvZhWqZ51riasWBftkrVXE
./build/sequence-wallet init --access-key AQAAAAAAAAK2JvvZhWqZ51riasWBftkrVXE

# Get token balances
./build/sequence-cli get_token_balances --chain_id 137 --contract_address 0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359 --wallet_address 0x8e3E38fe7367dd3b52D1e281E4e8400447C8d8B9 --include_metadata
./build/sequence-wallet get-token-balances --chain-id 137 --contract-address 0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359 --wallet-address 0x8e3E38fe7367dd3b52D1e281E4e8400447C8d8B9 --include-metadata

# Sign in with Email
./build/sequence-cli sign_in_with_email --email andygruening@gmail.com
./build/sequence-wallet sign-in-with-email --email andygruening@gmail.com

# Confirm Email sign in
./build/sequence-cli confirm_email_sign_in --email andygruening@gmail.com --code 123456
./build/sequence-wallet confirm-email-sign-in --email andygruening@gmail.com --code 123456 --wallet-type Ethereum_SequenceV3

# Use wallet
./build/sequence-cli use_wallet --wallet_type Ethereum_SequenceV3
./build/sequence-wallet use-wallet --wallet-type Ethereum_SequenceV3

# Create wallet
./build/sequence-cli create_wallet
./build/sequence-wallet create-wallet

# Sign message
./build/sequence-cli sign_message --chain_id 80002 --message test
./build/sequence-wallet sign-message --chain-id 80002 --message test

# Send transaction
./build/sequence-cli send_transaction --chain_id 80002 --to 0xE5E8B483FfC05967FcFed58cc98D053265af6D99 --value 1000
./build/sequence-wallet send-transaction --chain-id 80002 --to 0xE5E8B483FfC05967FcFed58cc98D053265af6D99 --value 1000
```

#### Homebrew version release
Expand Down
Loading
Loading