@skip-go/client 0.16.7 → 0.16.8
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.
- package/dist/index.d.ts +8 -0
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -67,11 +67,13 @@ type TransferInfo = {
|
|
|
67
67
|
type TransferAssetReleaseJSON = {
|
|
68
68
|
chain_id: string;
|
|
69
69
|
denom: string;
|
|
70
|
+
amount?: string;
|
|
70
71
|
released: boolean;
|
|
71
72
|
};
|
|
72
73
|
type TransferAssetRelease = {
|
|
73
74
|
chainID: string;
|
|
74
75
|
denom: string;
|
|
76
|
+
amount?: string;
|
|
75
77
|
released: boolean;
|
|
76
78
|
};
|
|
77
79
|
type TxStatusResponseJSON = {
|
|
@@ -1855,6 +1857,12 @@ type ExecuteRouteOptions = SignerGetters & GasOptions & TransactionCallbacks & {
|
|
|
1855
1857
|
*/
|
|
1856
1858
|
beforeMsg?: CosmosMsg;
|
|
1857
1859
|
afterMsg?: CosmosMsg;
|
|
1860
|
+
/**
|
|
1861
|
+
* If `skipApproval` is set to `true`, the router will bypass checking whether
|
|
1862
|
+
* the signer has granted approval for the specified token contract on an EVM chain.
|
|
1863
|
+
* This can be useful if approval has already been handled externally or there are race conditions.
|
|
1864
|
+
*/
|
|
1865
|
+
bypassApprovalCheck?: boolean;
|
|
1858
1866
|
};
|
|
1859
1867
|
type ExecuteCosmosMessageOptions = {
|
|
1860
1868
|
signerAddress: string;
|