Skip to content

Commit

Permalink
Rename erdjs to sdk-js.
Browse files Browse the repository at this point in the history
  • Loading branch information
andreibancioiu committed Jan 10, 2023
1 parent 7eaff97 commit 9429911
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src-network-providers/interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,12 @@ export interface INetworkProvider {
getNonFungibleToken(collection: string, nonce: number): Promise<NonFungibleTokenOfAccountOnNetwork>;

/**
* Performs a generic GET action against the provider (useful for new HTTP endpoints, not yet supported by erdjs).
* Performs a generic GET action against the provider (useful for new HTTP endpoints).
*/
doGetGeneric(resourceUrl: string): Promise<any>;

/**
* Performs a generic POST action against the provider (useful for new HTTP endpoints, not yet supported by erdjs).
* Performs a generic POST action against the provider (useful for new HTTP endpoints).
*/
doPostGeneric(resourceUrl: string, payload: any): Promise<any>;
}
Expand Down
4 changes: 2 additions & 2 deletions src-network-providers/tokenDefinitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class DefinitionOfFungibleTokenOnNetwork {

/**
* The implementation has been moved here from the following location:
* https://github.com/multiversx/mx-sdk-erdjs/blob/release/v9/src/token.ts
* https://github.com/multiversx/mx-sdk-js/blob/release/v9/src/token.ts
*/
static fromResponseOfGetTokenProperties(identifier: string, data: Buffer[]): DefinitionOfFungibleTokenOnNetwork {
let result = new DefinitionOfFungibleTokenOnNetwork();
Expand Down Expand Up @@ -106,7 +106,7 @@ export class DefinitionOfTokenCollectionOnNetwork {

/**
* The implementation has been moved here from the following location:
* https://github.com/multiversx/mx-sdk-erdjs/blob/release/v9/src/token.ts
* https://github.com/multiversx/mx-sdk-js/blob/release/v9/src/token.ts
*/
static fromResponseOfGetTokenProperties(collection: string, data: Buffer[]): DefinitionOfTokenCollectionOnNetwork {
let result = new DefinitionOfTokenCollectionOnNetwork();
Expand Down

0 comments on commit 9429911

Please sign in to comment.