Skip to content

Commit

Permalink
Add sandbox network passphrase
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Bellamy committed Sep 16, 2022
1 parent dc6b117 commit cca969e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/network.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
*/
export const Networks = {
PUBLIC: 'Public Global Stellar Network ; September 2015',
TESTNET: 'Test SDF Network ; September 2015'
TESTNET: 'Test SDF Network ; September 2015',
SANDBOX: 'Local Sandbox Stellar Network ; September 2022'
};
3 changes: 2 additions & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,8 @@ export class Memo<T extends MemoType = MemoType> {

export enum Networks {
PUBLIC = 'Public Global Stellar Network ; September 2015',
TESTNET = 'Test SDF Network ; September 2015'
TESTNET = 'Test SDF Network ; September 2015',
SANDBOX = 'Local Sandbox Stellar Network ; September 2022'
}

export const AuthRequiredFlag: 1;
Expand Down

0 comments on commit cca969e

Please sign in to comment.