@@ -49,7 +49,7 @@ type BtcSignMessageSignature = {
49
49
sig: Uint8Array,
50
50
recid: bigint,
51
51
electrumSig65: Uint8Array,
52
- }
52
+ };
53
53
// nonce, gasPrice, gasLimit and value must be big-endian encoded, no trailing zeroes.
54
54
type EthTransaction = {
55
55
nonce: Uint8Array;
@@ -93,18 +93,18 @@ type CardanoInput = {
93
93
type CardanoAssetGroupToken = {
94
94
assetName: Uint8Array;
95
95
value: bigint;
96
- }
96
+ };
97
97
type CardanoAssetGroup = {
98
98
policyId: Uint8Array;
99
99
tokens: CardanoAssetGroupToken[];
100
- }
100
+ };
101
101
type CardanoOutput = {
102
102
encodedAddress: string;
103
103
value: bigint;
104
104
scriptConfig?: CardanoScriptConfig;
105
105
assetGroups?: CardanoAssetGroup[];
106
- }
107
- type CardanoDrepType = 'keyHash' | 'scriptHash' | 'alwaysAbstain' | 'alwaysNoConfidence'
106
+ };
107
+ type CardanoDrepType = 'keyHash' | 'scriptHash' | 'alwaysAbstain' | 'alwaysNoConfidence';
108
108
type CardanoCertificate =
109
109
| {
110
110
stakeRegistration: {
@@ -132,7 +132,7 @@ type CardanoCertificate =
132
132
type CardanoWithdrawal = {
133
133
keypath: Keypath;
134
134
value: bigint;
135
- }
135
+ };
136
136
type CardanoTransaction = {
137
137
network: CardanoNetwork;
138
138
inputs: CardanoInput[];
@@ -148,7 +148,7 @@ type CardanoTransaction = {
148
148
type CardanoShelleyWitness = {
149
149
signature: Uint8Array;
150
150
publicKey: Uint8Array;
151
- }
151
+ };
152
152
type CardanoSignTransactionResult = {
153
153
shelleyWitnesses: CardanoShelleyWitness[];
154
154
};
@@ -157,7 +157,7 @@ type Error = {
157
157
message: string;
158
158
// original JS error if code === 'unknown-js'
159
159
err?: any;
160
- }
160
+ };
161
161
"# ;
162
162
163
163
#[ wasm_bindgen]
0 commit comments