Skip to content

Commit

Permalink
Renaming vm.provable.com -> api.explorer.provable.com/v1
Browse files Browse the repository at this point in the history
  • Loading branch information
Pauan committed Sep 24, 2024
1 parent db0100e commit df4963c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sdk/src/account.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export class Account {
*
* @example
* // Create a connection to the Aleo network and an account
* const connection = new NodeConnection("vm.provable.com/api");
* const connection = new AleoNetworkClient("https://api.explorer.provable.com/v1");
* const account = Account.fromCiphertext("ciphertext", "password");
*
* // Get a record from the network
Expand Down
2 changes: 1 addition & 1 deletion sdk/tests/record-provider.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ describe.skip('RecordProvider', () => {

beforeEach(() => {
account = new Account({privateKey: beaconPrivateKeyString});
networkClient = new AleoNetworkClient("http://vm.provable.com/api");
networkClient = new AleoNetworkClient("https://api.explorer.provable.com/v1");
recordProvider = new NetworkRecordProvider(account, networkClient);
});

Expand Down

0 comments on commit df4963c

Please sign in to comment.