genlayer-js 0.9.5 → 0.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -369,6 +369,10 @@ type GenLayerClient<TGenLayerChain extends GenLayerChain> = Omit<Client<Transpor
369
369
  initializeConsensusSmartContract: (forceReset?: boolean) => Promise<void>;
370
370
  connect: (network?: Network, snapSource?: SnapSource) => Promise<void>;
371
371
  metamaskClient: (snapSource?: SnapSource) => Promise<MetaMaskClientResult>;
372
+ appealTransaction: (args: {
373
+ account?: Account;
374
+ txId: `0x${string}`;
375
+ }) => Promise<any>;
372
376
  };
373
377
 
374
378
  export { type CalldataEncodable as C, type DecodedDeployData as D, type GenLayerClient as G, type Hash as H, type MethodDescription as M, type Network as N, type SnapSource as S, type TransactionDataElement as T, VoteType as V, CalldataAddress as a, type GenLayerMethod as b, type ContractParamsArraySchemaElement as c, type ContractParamsSchema as d, type ContractMethodBase as e, type ContractMethod as f, type ContractSchema as g, type TransactionHash as h, TransactionStatus as i, TransactionResult as j, transactionsStatusNameToNumber as k, transactionResultNumberToName as l, TransactionResultNameToNumber as m, voteTypeNameToNumber as n, type TransactionType as o, TransactionHashVariant as p, type DecodedCallData as q, type GenLayerTransaction as r, type GenLayerRawTransaction as s, transactionsStatusNumberToName as t, voteTypeNumberToName as v };
@@ -2,12 +2,15 @@ import { G as GenLayerChain } from './chains-BYSCF33g.cjs';
2
2
 
3
3
  declare const localnet: GenLayerChain;
4
4
 
5
+ declare const studionet: GenLayerChain;
6
+
5
7
  declare const testnetAsimov: GenLayerChain;
6
8
 
7
9
  declare const index_localnet: typeof localnet;
10
+ declare const index_studionet: typeof studionet;
8
11
  declare const index_testnetAsimov: typeof testnetAsimov;
9
12
  declare namespace index {
10
- export { index_localnet as localnet, index_testnetAsimov as testnetAsimov };
13
+ export { index_localnet as localnet, index_studionet as studionet, index_testnetAsimov as testnetAsimov };
11
14
  }
12
15
 
13
- export { index as i, localnet as l, testnetAsimov as t };
16
+ export { index as i, localnet as l, studionet as s, testnetAsimov as t };
@@ -2,12 +2,15 @@ import { G as GenLayerChain } from './chains-BYSCF33g.js';
2
2
 
3
3
  declare const localnet: GenLayerChain;
4
4
 
5
+ declare const studionet: GenLayerChain;
6
+
5
7
  declare const testnetAsimov: GenLayerChain;
6
8
 
7
9
  declare const index_localnet: typeof localnet;
10
+ declare const index_studionet: typeof studionet;
8
11
  declare const index_testnetAsimov: typeof testnetAsimov;
9
12
  declare namespace index {
10
- export { index_localnet as localnet, index_testnetAsimov as testnetAsimov };
13
+ export { index_localnet as localnet, index_studionet as studionet, index_testnetAsimov as testnetAsimov };
11
14
  }
12
15
 
13
- export { index as i, localnet as l, testnetAsimov as t };
16
+ export { index as i, localnet as l, studionet as s, testnetAsimov as t };
@@ -369,6 +369,10 @@ type GenLayerClient<TGenLayerChain extends GenLayerChain> = Omit<Client<Transpor
369
369
  initializeConsensusSmartContract: (forceReset?: boolean) => Promise<void>;
370
370
  connect: (network?: Network, snapSource?: SnapSource) => Promise<void>;
371
371
  metamaskClient: (snapSource?: SnapSource) => Promise<MetaMaskClientResult>;
372
+ appealTransaction: (args: {
373
+ account?: Account;
374
+ txId: `0x${string}`;
375
+ }) => Promise<any>;
372
376
  };
373
377
 
374
378
  export { type CalldataEncodable as C, type DecodedDeployData as D, type GenLayerClient as G, type Hash as H, type MethodDescription as M, type Network as N, type SnapSource as S, type TransactionDataElement as T, VoteType as V, CalldataAddress as a, type GenLayerMethod as b, type ContractParamsArraySchemaElement as c, type ContractParamsSchema as d, type ContractMethodBase as e, type ContractMethod as f, type ContractSchema as g, type TransactionHash as h, TransactionStatus as i, TransactionResult as j, transactionsStatusNameToNumber as k, transactionResultNumberToName as l, TransactionResultNameToNumber as m, voteTypeNameToNumber as n, type TransactionType as o, TransactionHashVariant as p, type DecodedCallData as q, type GenLayerTransaction as r, type GenLayerRawTransaction as s, transactionsStatusNumberToName as t, voteTypeNumberToName as v };