diff --git a/examples/ts/go-account/create-go-account-address.ts b/examples/ts/go-account/create-go-account-address.ts index 69a1d0d279..544dad5a25 100644 --- a/examples/ts/go-account/create-go-account-address.ts +++ b/examples/ts/go-account/create-go-account-address.ts @@ -20,7 +20,7 @@ require('dotenv').config({ path: '../../../.env' }); // Initialize BitGo SDK const bitgo = new BitGoAPI({ accessToken: process.env.TESTNET_ACCESS_TOKEN, - env: 'test', // Change this to env: 'production' when you are ready for production + env: 'test', // Change this to env: 'prod' when you are ready for production }); // Go Accounts use the 'ofc' (Off-Chain) coin diff --git a/examples/ts/go-account/create-go-account-advanced.ts b/examples/ts/go-account/create-go-account-advanced.ts index 70633fc1bb..06e8d696a0 100644 --- a/examples/ts/go-account/create-go-account-advanced.ts +++ b/examples/ts/go-account/create-go-account-advanced.ts @@ -26,7 +26,7 @@ require('dotenv').config({ path: '../../../.env' }); // Initialize BitGo SDK const bitgo = new BitGoAPI({ accessToken: process.env.TESTNET_ACCESS_TOKEN, - env: 'test', // Change this to env: 'production' when you are ready for production + env: 'test', // Change this to env: 'prod' when you are ready for production }); // Go Accounts use the 'ofc' (Off-Chain) coin diff --git a/examples/ts/go-account/create-go-account.ts b/examples/ts/go-account/create-go-account.ts index 64141e42cb..d9805c4413 100644 --- a/examples/ts/go-account/create-go-account.ts +++ b/examples/ts/go-account/create-go-account.ts @@ -21,7 +21,7 @@ require('dotenv').config({ path: '../../../.env' }); // Initialize BitGo SDK const bitgo = new BitGoAPI({ accessToken: process.env.TESTNET_ACCESS_TOKEN, - env: 'test', // Change this to env: 'production' when you are ready for production + env: 'test', // Change this to env: 'prod' when you are ready for production }); // Go Accounts use the 'ofc' (Off-Chain) coin diff --git a/examples/ts/go-account/go-account-approve.ts b/examples/ts/go-account/go-account-approve.ts index 23e9413812..ef094c5cc8 100644 --- a/examples/ts/go-account/go-account-approve.ts +++ b/examples/ts/go-account/go-account-approve.ts @@ -34,7 +34,7 @@ require('dotenv').config({ path: '../../../.env' }); // Initialize BitGo SDK with the APPROVING admin's access token const bitgo = new BitGoAPI({ accessToken: process.env.TESTNET_ACCESS_TOKEN, - env: 'test', // Change to 'production' for mainnet + env: 'test', // Change to 'prod' for mainnet }); const baseCoin = 'ofc'; diff --git a/examples/ts/go-account/go-account-get-balance.ts b/examples/ts/go-account/go-account-get-balance.ts index b62ca9fa9b..9edace72a5 100644 --- a/examples/ts/go-account/go-account-get-balance.ts +++ b/examples/ts/go-account/go-account-get-balance.ts @@ -25,7 +25,7 @@ require('dotenv').config({ path: '../../../.env' }); // Initialize BitGo SDK const bitgo = new BitGoAPI({ accessToken: process.env.TESTNET_ACCESS_TOKEN, - env: 'staging', // Change to 'production' for mainnet + env: 'test', // Change to 'prod' for mainnet }); // --------------------------------------------------------------------------- diff --git a/examples/ts/go-account/go-account-get-order.ts b/examples/ts/go-account/go-account-get-order.ts index e239f73f03..8a5df23942 100644 --- a/examples/ts/go-account/go-account-get-order.ts +++ b/examples/ts/go-account/go-account-get-order.ts @@ -20,7 +20,7 @@ require('dotenv').config({ path: '../../../.env' }); // Initialize BitGo SDK const bitgo = new BitGoAPI({ accessToken: process.env.TESTNET_ACCESS_TOKEN, - env: 'test', // Change to 'production' for mainnet + env: 'test', // Change to 'prod' for mainnet }); // --------------------------------------------------------------------------- diff --git a/examples/ts/go-account/go-account-get-pending-approval.ts b/examples/ts/go-account/go-account-get-pending-approval.ts index 07792a2241..14eb81bf84 100644 --- a/examples/ts/go-account/go-account-get-pending-approval.ts +++ b/examples/ts/go-account/go-account-get-pending-approval.ts @@ -17,7 +17,7 @@ require('dotenv').config({ path: '../../../.env' }); const bitgo = new BitGoAPI({ accessToken: process.env.TESTNET_ACCESS_TOKEN, - env: 'test', // Change to 'production' for mainnet + env: 'test', // Change to 'prod' for mainnet }); const baseCoin = 'ofc'; diff --git a/examples/ts/go-account/go-account-list-orders.ts b/examples/ts/go-account/go-account-list-orders.ts index 3baa4334e2..52866d6543 100644 --- a/examples/ts/go-account/go-account-list-orders.ts +++ b/examples/ts/go-account/go-account-list-orders.ts @@ -22,7 +22,7 @@ require('dotenv').config({ path: '../../../.env' }); // Initialize BitGo SDK const bitgo = new BitGoAPI({ accessToken: process.env.TESTNET_ACCESS_TOKEN, - env: 'test', // Change to 'production' for mainnet + env: 'test', // Change to 'prod' for mainnet }); // --------------------------------------------------------------------------- diff --git a/examples/ts/go-account/go-account-list-products.ts b/examples/ts/go-account/go-account-list-products.ts index 8aeaa96bbf..78d2df337e 100644 --- a/examples/ts/go-account/go-account-list-products.ts +++ b/examples/ts/go-account/go-account-list-products.ts @@ -19,7 +19,7 @@ require('dotenv').config({ path: '../../../.env' }); // Initialize BitGo SDK const bitgo = new BitGoAPI({ accessToken: process.env.TESTNET_ACCESS_TOKEN, - env: 'staging', // Change to 'production' for mainnet + env: 'test', // Change to 'prod' for mainnet }); // --------------------------------------------------------------------------- diff --git a/examples/ts/go-account/go-account-place-order.ts b/examples/ts/go-account/go-account-place-order.ts index fdce16628e..73f40d4c95 100644 --- a/examples/ts/go-account/go-account-place-order.ts +++ b/examples/ts/go-account/go-account-place-order.ts @@ -38,7 +38,7 @@ require('dotenv').config({ path: '../../../.env' }); // Initialize BitGo SDK const bitgo = new BitGoAPI({ accessToken: process.env.TESTNET_ACCESS_TOKEN, - env: 'test', // Change to 'production' for mainnet + env: 'test', // Change to 'prod' for mainnet }); // --------------------------------------------------------------------------- diff --git a/examples/ts/go-account/go-account-whitelist-update.ts b/examples/ts/go-account/go-account-whitelist-update.ts index df5dbee67b..c0677d0008 100644 --- a/examples/ts/go-account/go-account-whitelist-update.ts +++ b/examples/ts/go-account/go-account-whitelist-update.ts @@ -31,7 +31,7 @@ require('dotenv').config({ path: '../../../.env' }); // Initialize BitGo SDK const bitgo = new BitGoAPI({ accessToken: process.env.TESTNET_ACCESS_TOKEN, - env: 'test', // Change to 'production' for mainnet + env: 'test', // Change to 'prod' for mainnet }); const baseCoin = 'ofc'; diff --git a/examples/ts/go-account/go-account-withdrawal.ts b/examples/ts/go-account/go-account-withdrawal.ts index 0db2949ff0..50e09c9cf0 100644 --- a/examples/ts/go-account/go-account-withdrawal.ts +++ b/examples/ts/go-account/go-account-withdrawal.ts @@ -31,7 +31,7 @@ require('dotenv').config({ path: '../../../.env' }); // Initialize BitGo SDK const bitgo = new BitGoAPI({ accessToken: process.env.TESTNET_ACCESS_TOKEN, - env: 'test', // Change to 'production' for mainnet + env: 'test', // Change to 'prod' for mainnet }); // Go Accounts use the 'ofc' (Off-Chain) coin family. diff --git a/examples/ts/go-account/sign-transaction.ts b/examples/ts/go-account/sign-transaction.ts index 9d904459ed..8cde1d94a0 100644 --- a/examples/ts/go-account/sign-transaction.ts +++ b/examples/ts/go-account/sign-transaction.ts @@ -32,7 +32,7 @@ require('dotenv').config({ path: '../../../.env' }); // Initialize BitGo SDK const bitgo = new BitGoAPI({ accessToken: process.env.TESTNET_ACCESS_TOKEN, - env: 'test', // Change to 'production' for mainnet + env: 'test', // Change to 'prod' for mainnet }); // Go Accounts use the 'ofc' (Off-Chain) coin