-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #127 from coinbase/v0.0.14
V0.0.14
- Loading branch information
Showing
149 changed files
with
47,061 additions
and
6,329 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Capabilities | ||
|
||
The Coinbase SDK has different capabilities for different wallet types and networks. This page summarizes | ||
those capabilities for the Ruby SDK: | ||
|
||
## Developer Wallets | ||
|
||
| Concept | Base-Sepolia | Base-Mainnet | Ethereum-Holesky | Ethereum-Mainnet | | ||
| ------------- | :----------: | :----------: | :--------------: | :--------------: | | ||
| Addresses | ✅ | ✅ | ✅ | ✅ | | ||
| Send | ✅ | ✅ | ✅ | ❌ | | ||
| Trade | ❌ | ✅ | ❌ | ❌ | | ||
| Faucet | ✅ | ❌ | ✅ | ❌ | | ||
| Server-Signer | ✅ | ✅ | ❌ | ❌ | | ||
| Stake [^1] | ❌ | ❌ | ✅ | ✅ | | ||
|
||
[^1]: Currently only available for Shared ETH Staking. | ||
|
||
## End-User Wallets | ||
|
||
| Concept | Base-Sepolia | Base-Mainnet | Ethereum-Holesky | Ethereum-Mainnet | | ||
| ------------------ | :----------: | :----------: | :--------------: | :--------------: | | ||
| External Addresses | ✅ | ✅ | ✅ | ✅ | | ||
| Stake [^2] | ❌ | ❌ | ✅ | ✅ | | ||
|
||
[^2]: Dedicated ETH Staking is currently only available on Testnet (Ethereum-Holesky). | ||
|
||
## Testnet vs. Mainnet | ||
|
||
The Coinbase SDK supports both testnets and mainnets. | ||
|
||
- Testnets are for building and testing applications. Funds are not real, and you can get test currencies from a faucet. | ||
- Mainnet is where the funds, contracts and applications are real. | ||
|
||
Wallets, assets, etc, cannot be moved from testnet to mainnet (or vice versa). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
# frozen_string_literal: true | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = 'coinbase-sdk' | ||
spec.version = '0.0.13' | ||
spec.authors = ['Yuga Cohler'] | ||
spec.files = Dir['lib/**/*.rb'] | ||
spec.summary = 'Coinbase Ruby SDK' | ||
spec.name = 'coinbase-sdk' | ||
spec.version = '0.0.14' | ||
spec.authors = ['Yuga Cohler'] | ||
spec.files = Dir['lib/**/*.rb'] | ||
spec.summary = 'Coinbase Ruby SDK' | ||
|
||
spec.description = 'Coinbase Ruby SDK for accessing Coinbase Platform APIs' | ||
spec.email = '[email protected]' | ||
spec.homepage = 'https://github.com/coinbase/coinbase-sdk-ruby' | ||
spec.license = 'Apache-2.0' | ||
spec.description = 'Coinbase Ruby SDK for accessing Coinbase Platform APIs' | ||
spec.email = '[email protected]' | ||
spec.homepage = 'https://github.com/coinbase/coinbase-sdk-ruby' | ||
spec.license = 'Apache-2.0' | ||
spec.required_ruby_version = Gem::Requirement.new('>= 2.7.0') | ||
|
||
spec.metadata['rubygems_mfa_required'] = 'true' | ||
|
@@ -19,6 +19,7 @@ Gem::Specification.new do |spec| | |
spec.add_runtime_dependency 'eth' | ||
spec.add_runtime_dependency 'faraday' | ||
spec.add_runtime_dependency 'faraday-multipart' | ||
spec.add_runtime_dependency 'faraday-retry' | ||
spec.add_runtime_dependency 'jwt' | ||
spec.add_runtime_dependency 'marcel' | ||
spec.add_runtime_dependency 'money-tree' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.