Skip to content

Commit

Permalink
fix(example): escape quotes in packagejson for example package json
Browse files Browse the repository at this point in the history
  • Loading branch information
atticusofsparta committed Feb 24, 2024
1 parent db7140b commit fb47de0
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/common/ar-io.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,8 @@ import { ArNSRemoteCache } from './index.js';
export class ArIO {
protected cache: ContractCache = new ArNSRemoteCache({});

public testnet: ArIOContract = this.cache.setContractTxId(
ARNS_TESTNET_REGISTRY_TX,
);
public devnet: ArIOContract = this.cache.setContractTxId(
ARNS_DEVNET_REGISTRY_TX,
);
public testnet: ArIOContract;
public devnet: ArIOContract;

constructor({ remoteCacheUrl }: { remoteCacheUrl?: string }) {
this.cache = new ArNSRemoteCache({ url: remoteCacheUrl });
Expand Down

0 comments on commit fb47de0

Please sign in to comment.